Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.43 KB

File metadata and controls

32 lines (23 loc) · 1.43 KB

CarriersCarriersInner

Properties

Name Type Description Notes
carrier_id str A unique identifier associated with the specific carrier. [optional]
name str This is the name of the Carrier, a shipping service which is used to carry shipment (e.g., parcels/packages/envelopes) from one place to other. [optional]
origin_country str This indicates the two-character ISO code of the source country from the ISO country list. [optional]
properties CarriersCarriersInnerProperties [optional]

Example

from shipping.models.carriers_carriers_inner import CarriersCarriersInner

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

# convert the object into a dict
carriers_carriers_inner_dict = carriers_carriers_inner_instance.to_dict()
# create an instance of CarriersCarriersInner from a dict
carriers_carriers_inner_from_dict = CarriersCarriersInner.from_dict(carriers_carriers_inner_dict)

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