Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 968 Bytes

File metadata and controls

35 lines (26 loc) · 968 Bytes

Tcpa

Properties

Name Type Description Notes
cell_phone object
phone_number_id str
id StaticVoucherId
merchant_id str
created_at object
updated_at object
is_active object

Example

from wallet.models.tcpa import Tcpa

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

# convert the object into a dict
tcpa_dict = tcpa_instance.to_dict()
# create an instance of Tcpa from a dict
tcpa_form_dict = tcpa.from_dict(tcpa_dict)

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