Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

SaveTicketSettingsRequest

Properties

Name Type Description Notes
redemption_instructions str [optional]
ticket_expiration_date_time datetime
max_comp_tickets float
payment_design_id SaveTicketSettingsRequestPaymentDesignID

Example

from wallet.models.save_ticket_settings_request import SaveTicketSettingsRequest

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

# convert the object into a dict
save_ticket_settings_request_dict = save_ticket_settings_request_instance.to_dict()
# create an instance of SaveTicketSettingsRequest from a dict
save_ticket_settings_request_form_dict = save_ticket_settings_request.from_dict(save_ticket_settings_request_dict)

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