Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

ShipmentMetadataInner

Properties

Name Type Description Notes
name str This is a key of metadata [optional]
value str This is a value of metadata [optional]

Example

from shipping.models.shipment_metadata_inner import ShipmentMetadataInner

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

# convert the object into a dict
shipment_metadata_inner_dict = shipment_metadata_inner_instance.to_dict()
# create an instance of ShipmentMetadataInner from a dict
shipment_metadata_inner_from_dict = ShipmentMetadataInner.from_dict(shipment_metadata_inner_dict)

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