Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.11 KB

File metadata and controls

29 lines (21 loc) · 1.11 KB

PriceInfoPriceRange

Properties

Name Type Description Notes
price PriceInfoPriceRangePrice [optional]
original_price PriceInfoPriceRangeOriginalPrice [optional]

Example

from gb_retailapi_client.models.price_info_price_range import PriceInfoPriceRange

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

# convert the object into a dict
price_info_price_range_dict = price_info_price_range_instance.to_dict()
# create an instance of PriceInfoPriceRange from a dict
price_info_price_range_form_dict = price_info_price_range.from_dict(price_info_price_range_dict)

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