Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

ChangePhoneNumberRequest

Phone change — the new phone is retrieved from the validation record.

Properties

Name Type Description Notes
phone_validation_id UUID
code str

Example

from ksapi.models.change_phone_number_request import ChangePhoneNumberRequest

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

# convert the object into a dict
change_phone_number_request_dict = change_phone_number_request_instance.to_dict()
# create an instance of ChangePhoneNumberRequest from a dict
change_phone_number_request_from_dict = ChangePhoneNumberRequest.from_dict(change_phone_number_request_dict)

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