| Name | Type | Description | Notes |
|---|---|---|---|
| manifest_documents | List[ManifestCompactResponseManifestDocumentsInner] | [optional] | |
| manifest_id | str | [optional] | |
| manifest_tracking_number | str | [optional] |
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)