Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 3.42 KB

File metadata and controls

38 lines (29 loc) · 3.42 KB

V2TransfersTemplatesCreatePostRequestInnerDestinationsInner

Properties

Name Type Description Notes
recipient_id float Facility ID of the destination facility. To find eligible destination facilities, use the Destinations endpoint.
planned_route str Planned route for the shipment.
transfer_type_id float Identifier for the type of transfer.
invoice_number str Invoice number for this delivery. Not all transfer types require this value. This value is only required if the `transferType` has `requiresInvoiceNumber=true`. See the create transfer inputs endpoints for details. [optional]
estimated_departure_date_time datetime Estimated departure date and time.
estimated_arrival_date_time datetime Estimated arrival date and time.
gross_weight float Gross weight of the transfer. Not all transfer types require this value. Only should be set if the `transferType` has requiresDestinationGrossWeight=true. See the create transfer inputs endpoints for details. [optional]
gross_unit_of_weight_id float Identifier for the unit of weight. Not all transfer types require this value. Only should be set if the `transferType` has requiresDestinationGrossWeight=true. See the create transfer inputs endpoints for details. [optional]
transporters List[V2TransfersCreatePostRequestInnerDestinationsInnerTransportersInner] List of transporters for the transfer. [optional]
packages List[V2TransfersTemplatesCreatePostRequestInnerDestinationsInnerPackagesInner] List of packages in the transfer. [optional]

Example

from t3api.models.v2_transfers_templates_create_post_request_inner_destinations_inner import V2TransfersTemplatesCreatePostRequestInnerDestinationsInner

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

# convert the object into a dict
v2_transfers_templates_create_post_request_inner_destinations_inner_dict = v2_transfers_templates_create_post_request_inner_destinations_inner_instance.to_dict()
# create an instance of V2TransfersTemplatesCreatePostRequestInnerDestinationsInner from a dict
v2_transfers_templates_create_post_request_inner_destinations_inner_from_dict = V2TransfersTemplatesCreatePostRequestInnerDestinationsInner.from_dict(v2_transfers_templates_create_post_request_inner_destinations_inner_dict)

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