Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.13 KB

PosOfferCodeList.md

File metadata and controls

32 lines (24 loc) · 1.13 KB

PosOfferCodeList

Properties

Name Type Description Notes
page int [optional]
per_page int [optional]
total_entries int [optional]
total_pages int [optional]
pos_offer_codes List[PosOfferCodeResponse] [optional]

Example

from sparkfly_client.models.pos_offer_code_list import PosOfferCodeList

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

# convert the object into a dict
pos_offer_code_list_dict = pos_offer_code_list_instance.to_dict()
# create an instance of PosOfferCodeList from a dict
pos_offer_code_list_form_dict = pos_offer_code_list.from_dict(pos_offer_code_list_dict)

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