| 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[V2TransfersCreatePostRequestInnerDestinationsInnerPackagesInner] | List of packages in the transfer. | [optional] |
from t3api.models.v2_transfers_create_post_request_inner_destinations_inner import V2TransfersCreatePostRequestInnerDestinationsInner
# TODO update the JSON string below
json = "{}"
# create an instance of V2TransfersCreatePostRequestInnerDestinationsInner from a JSON string
v2_transfers_create_post_request_inner_destinations_inner_instance = V2TransfersCreatePostRequestInnerDestinationsInner.from_json(json)
# print the JSON string representation of the object
print(V2TransfersCreatePostRequestInnerDestinationsInner.to_json())
# convert the object into a dict
v2_transfers_create_post_request_inner_destinations_inner_dict = v2_transfers_create_post_request_inner_destinations_inner_instance.to_dict()
# create an instance of V2TransfersCreatePostRequestInnerDestinationsInner from a dict
v2_transfers_create_post_request_inner_destinations_inner_from_dict = V2TransfersCreatePostRequestInnerDestinationsInner.from_dict(v2_transfers_create_post_request_inner_destinations_inner_dict)