Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1005 Bytes

FreightResponse.md

File metadata and controls

29 lines (20 loc) · 1005 Bytes

FreightResponse

Properties

Name Type Description Notes
freight_estimate_response FreightResponseFreightEstimateResponse [optional]

Example

from xi.sdk.resellers.models.freight_response import FreightResponse

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

# convert the object into a dict
freight_response_dict = freight_response_instance.to_dict()
# create an instance of FreightResponse from a dict
freight_response_from_dict = FreightResponse.from_dict(freight_response_dict)

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