Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 2.71 KB

File metadata and controls

32 lines (23 loc) · 2.71 KB

V2TransfersTemplatesCreatePostRequestInnerDestinationsInnerPackagesInner

Properties

Name Type Description Notes
id float Identifier of the package.
wholesale_price float Wholesale price of the package. Not all transfer types require this value. Only should be set if the `transferType` has `transactionType="Wholesale"`. See the create transfer inputs endpoints for details. [optional]
gross_weight float Gross weight of the package. Not all transfer types require this value. Only should be set if the `transferType` has `requiresPackagesGrossWeight=true`. See the create transfer inputs endpoints for details. [optional]
gross_unit_of_weight_id float Unit of weight identifier for the package. Not all transfer types require this value. Only should be set if the `transferType` has `requiresPackagesGrossWeight=true`. See the create transfer inputs endpoints for details. [optional]

Example

from t3api.models.v2_transfers_templates_create_post_request_inner_destinations_inner_packages_inner import V2TransfersTemplatesCreatePostRequestInnerDestinationsInnerPackagesInner

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

# convert the object into a dict
v2_transfers_templates_create_post_request_inner_destinations_inner_packages_inner_dict = v2_transfers_templates_create_post_request_inner_destinations_inner_packages_inner_instance.to_dict()
# create an instance of V2TransfersTemplatesCreatePostRequestInnerDestinationsInnerPackagesInner from a dict
v2_transfers_templates_create_post_request_inner_destinations_inner_packages_inner_from_dict = V2TransfersTemplatesCreatePostRequestInnerDestinationsInnerPackagesInner.from_dict(v2_transfers_templates_create_post_request_inner_destinations_inner_packages_inner_dict)

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