| Name | Type | Description | Notes |
|---|---|---|---|
| from_address | RateShopResponseFromAddress | [optional] | |
| parcel | RateShopResponseParcel | [optional] | |
| rates | List[RateShopResponseRatesInner] | It displays all available rates for each services | [optional] |
| to_address | RateShopResponseToAddress | [optional] | |
| is_hazmat | bool | isHazmat if set to true,only services which support Hazardous material shipment would be visible in the response | [optional] |
| errors | List[RateShopResponseErrorsInner] | It display any error while getting rates | [optional] |
from shipping.models.rate_shop_response import RateShopResponse
# TODO update the JSON string below
json = "{}"
# create an instance of RateShopResponse from a JSON string
rate_shop_response_instance = RateShopResponse.from_json(json)
# print the JSON string representation of the object
print(RateShopResponse.to_json())
# convert the object into a dict
rate_shop_response_dict = rate_shop_response_instance.to_dict()
# create an instance of RateShopResponse from a dict
rate_shop_response_from_dict = RateShopResponse.from_dict(rate_shop_response_dict)