Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.43 KB

ShippingOrderResponse.md

File metadata and controls

36 lines (27 loc) · 1.43 KB

ShippingOrderResponse

Properties

Name Type Description Notes
amount int Shipping amount in cents
carrier str Carrier name for the shipment [optional]
tracking_number str Tracking number can be used to track the shipment [optional]
method str Method of shipment [optional]
metadata Dict[str, object] Hash where the user can send additional information for each 'shipping'. [optional]
id str [optional]
object str [optional]
parent_id str [optional]

Example

from conekta.models.shipping_order_response import ShippingOrderResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ShippingOrderResponse from a JSON string
shipping_order_response_instance = ShippingOrderResponse.from_json(json)
# print the JSON string representation of the object
print(ShippingOrderResponse.to_json())

# convert the object into a dict
shipping_order_response_dict = shipping_order_response_instance.to_dict()
# create an instance of ShippingOrderResponse from a dict
shipping_order_response_from_dict = ShippingOrderResponse.from_dict(shipping_order_response_dict)

[Back to Model list] [Back to API list] [Back to README]