Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.25 KB

File metadata and controls

34 lines (25 loc) · 1.25 KB

WTTicketCreateParams

Properties

Name Type Description Notes
recipient_phone_number object [optional]
recipient_email_address object [optional]
recipient_member_id object [optional]
is_comp object [optional]
quantity object The number of tickets allocated to the recipient. [optional]
performance_id object

Example

from wallet.models.wt_ticket_create_params import WTTicketCreateParams

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

# convert the object into a dict
wt_ticket_create_params_dict = wt_ticket_create_params_instance.to_dict()
# create an instance of WTTicketCreateParams from a dict
wt_ticket_create_params_form_dict = wt_ticket_create_params.from_dict(wt_ticket_create_params_dict)

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