Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.09 KB

OfferStateList.md

File metadata and controls

32 lines (24 loc) · 1.09 KB

OfferStateList

Properties

Name Type Description Notes
page int [optional]
per_page int [optional]
total_entries int [optional]
total_pages int [optional]
offer_states List[OfferStateResponse] [optional]

Example

from sparkfly_client.models.offer_state_list import OfferStateList

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

# convert the object into a dict
offer_state_list_dict = offer_state_list_instance.to_dict()
# create an instance of OfferStateList from a dict
offer_state_list_form_dict = offer_state_list.from_dict(offer_state_list_dict)

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