Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.7 KB

ProductDetailResponseAdditionalInformationProductWeightInner.md

File metadata and controls

31 lines (22 loc) · 1.7 KB

ProductDetailResponseAdditionalInformationProductWeightInner

Properties

Name Type Description Notes
plant_id str ID of the plant. Example : 'US01' [optional]
weight float Weight of the product. Example : 2 [optional]
weight_unit str Weight unit of the product. Example : 'LB' [optional]

Example

from xi.sdk.resellers.models.product_detail_response_additional_information_product_weight_inner import ProductDetailResponseAdditionalInformationProductWeightInner

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

# convert the object into a dict
product_detail_response_additional_information_product_weight_inner_dict = product_detail_response_additional_information_product_weight_inner_instance.to_dict()
# create an instance of ProductDetailResponseAdditionalInformationProductWeightInner from a dict
product_detail_response_additional_information_product_weight_inner_from_dict = ProductDetailResponseAdditionalInformationProductWeightInner.from_dict(product_detail_response_additional_information_product_weight_inner_dict)

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