Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.52 KB

File metadata and controls

31 lines (22 loc) · 1.52 KB

V2TransfersTemplatesCreatePostRequestInner

A schema representing a shipment with details about destinations, transporters, and packages.

Properties

Name Type Description Notes
name str
destinations List[V2TransfersTemplatesCreatePostRequestInnerDestinationsInner] List of destinations for the shipment.

Example

from t3api.models.v2_transfers_templates_create_post_request_inner import V2TransfersTemplatesCreatePostRequestInner

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

# convert the object into a dict
v2_transfers_templates_create_post_request_inner_dict = v2_transfers_templates_create_post_request_inner_instance.to_dict()
# create an instance of V2TransfersTemplatesCreatePostRequestInner from a dict
v2_transfers_templates_create_post_request_inner_from_dict = V2TransfersTemplatesCreatePostRequestInner.from_dict(v2_transfers_templates_create_post_request_inner_dict)

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