Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1008 Bytes

File metadata and controls

29 lines (20 loc) · 1008 Bytes

ImportTicketsRequest

Properties

Name Type Description Notes
tickets List[WTTicketUpdateParams]

Example

from wallet.models.import_tickets_request import ImportTicketsRequest

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

# convert the object into a dict
import_tickets_request_dict = import_tickets_request_instance.to_dict()
# create an instance of ImportTicketsRequest from a dict
import_tickets_request_form_dict = import_tickets_request.from_dict(import_tickets_request_dict)

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