Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

ManifestCompactResponse

Properties

Name Type Description Notes
manifest_documents List[ManifestCompactResponseManifestDocumentsInner] [optional]
manifest_id str [optional]
manifest_tracking_number str [optional]

Example

from shipping.models.manifest_compact_response import ManifestCompactResponse

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

# convert the object into a dict
manifest_compact_response_dict = manifest_compact_response_instance.to_dict()
# create an instance of ManifestCompactResponse from a dict
manifest_compact_response_from_dict = ManifestCompactResponse.from_dict(manifest_compact_response_dict)

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