Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

File metadata and controls

30 lines (21 loc) · 1.21 KB

FetchCustomerTicketsWithTokenRequest

Properties

Name Type Description Notes
phone_verification_token str
merchant_id str

Example

from wallet.models.fetch_customer_tickets_with_token_request import FetchCustomerTicketsWithTokenRequest

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

# convert the object into a dict
fetch_customer_tickets_with_token_request_dict = fetch_customer_tickets_with_token_request_instance.to_dict()
# create an instance of FetchCustomerTicketsWithTokenRequest from a dict
fetch_customer_tickets_with_token_request_form_dict = fetch_customer_tickets_with_token_request.from_dict(fetch_customer_tickets_with_token_request_dict)

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