| 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 |
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)