| Name |
Type |
Description |
Notes |
| recipient_phone_number |
str |
|
[optional] |
| recipient_email_address |
str |
|
[optional] |
| recipient_member_id |
str |
|
[optional] |
| is_comp |
bool |
|
[optional] |
| quantity |
float |
The number of tickets allocated to the recipient. |
[optional] |
| performance_id |
str |
|
|
| id |
SaveTicketSettingsRequestPaymentDesignID |
|
|
| created_at |
datetime |
|
|
| updated_at |
datetime |
|
|
| is_active |
bool |
|
|
| merchant_id |
str |
|
|
| is_claimed |
bool |
|
[optional] |
| date_time_claimed |
datetime |
|
[optional] |
| claimed_by_phone_number |
str |
|
[optional] |
| redeemed_source |
str |
|
[optional] |
| redeemed_transaction_id |
str |
|
[optional] |
| transaction_type |
str |
|
[optional] |
| register_id |
str |
|
[optional] |
| is_redeemed |
bool |
|
[optional] |
| date_time_redeemed |
datetime |
|
[optional] |
from wallet.models.wt_ticket import WTTicket
# TODO update the JSON string below
json = "{}"
# create an instance of WTTicket from a JSON string
wt_ticket_instance = WTTicket.from_json(json)
# print the JSON string representation of the object
print WTTicket.to_json()
# convert the object into a dict
wt_ticket_dict = wt_ticket_instance.to_dict()
# create an instance of WTTicket from a dict
wt_ticket_form_dict = wt_ticket.from_dict(wt_ticket_dict)
[Back to Model list] [Back to API list] [Back to README]