Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 989 Bytes

PosOfferCode.md

File metadata and controls

31 lines (23 loc) · 989 Bytes

PosOfferCode

Properties

Name Type Description Notes
id int [optional]
account_id int [optional]
code str [optional]
description str [optional]

Example

from sparkfly_client.models.pos_offer_code import PosOfferCode

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

# convert the object into a dict
pos_offer_code_dict = pos_offer_code_instance.to_dict()
# create an instance of PosOfferCode from a dict
pos_offer_code_form_dict = pos_offer_code.from_dict(pos_offer_code_dict)

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