| Name |
Type |
Description |
Notes |
| merchant_id |
str |
|
|
| phone_number |
str |
|
|
| otp |
str |
|
|
from wallet.models.wt_twilio_verify_authy_code import WTTwilioVerifyAuthyCode
# TODO update the JSON string below
json = "{}"
# create an instance of WTTwilioVerifyAuthyCode from a JSON string
wt_twilio_verify_authy_code_instance = WTTwilioVerifyAuthyCode.from_json(json)
# print the JSON string representation of the object
print WTTwilioVerifyAuthyCode.to_json()
# convert the object into a dict
wt_twilio_verify_authy_code_dict = wt_twilio_verify_authy_code_instance.to_dict()
# create an instance of WTTwilioVerifyAuthyCode from a dict
wt_twilio_verify_authy_code_form_dict = wt_twilio_verify_authy_code.from_dict(wt_twilio_verify_authy_code_dict)
[Back to Model list] [Back to API list] [Back to README]