Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 939 Bytes

RedemptionList1.md

File metadata and controls

28 lines (20 loc) · 939 Bytes

RedemptionList1

Properties

Name Type Description Notes
redemptions List[Redemption] [optional]

Example

from sparkfly_client.models.redemption_list1 import RedemptionList1

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

# convert the object into a dict
redemption_list1_dict = redemption_list1_instance.to_dict()
# create an instance of RedemptionList1 from a dict
redemption_list1_form_dict = redemption_list1.from_dict(redemption_list1_dict)

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