Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 943 Bytes

File metadata and controls

31 lines (22 loc) · 943 Bytes

WTTCPAOpt

Properties

Name Type Description Notes
list_id WTTCPAOptListID
source_id WTTCPAOptSourceID
phone_number str

Example

from wallet.models.wttcpa_opt import WTTCPAOpt

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

# convert the object into a dict
wttcpa_opt_dict = wttcpa_opt_instance.to_dict()
# create an instance of WTTCPAOpt from a dict
wttcpa_opt_form_dict = wttcpa_opt.from_dict(wttcpa_opt_dict)

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