Phone change — the new phone is retrieved from the validation record.
| Name | Type | Description | Notes |
|---|---|---|---|
| phone_validation_id | UUID | ||
| code | str |
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)