Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

CreateManifestRequest

Properties

Name Type Description Notes
carrier_account_id str A unique identifier associated with the specific carrier account, which is used in the Manifest process.
from_address CreateManifestRequestFromAddress
submission_date str The date the shipments are to be tendered to the carrier, entered as YYYY-MM-DD. [optional]

Example

from shipping.models.create_manifest_request import CreateManifestRequest

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

# convert the object into a dict
create_manifest_request_dict = create_manifest_request_instance.to_dict()
# create an instance of CreateManifestRequest from a dict
create_manifest_request_from_dict = CreateManifestRequest.from_dict(create_manifest_request_dict)

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