You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Subscriber number as a string of digits, no country code (e.g. '13800138000'). The SMS provider determines routing.
Example
fromksapi.models.request_phone_change_requestimportRequestPhoneChangeRequest# TODO update the JSON string belowjson="{}"# create an instance of RequestPhoneChangeRequest from a JSON stringrequest_phone_change_request_instance=RequestPhoneChangeRequest.from_json(json)
# print the JSON string representation of the objectprint(RequestPhoneChangeRequest.to_json())
# convert the object into a dictrequest_phone_change_request_dict=request_phone_change_request_instance.to_dict()
# create an instance of RequestPhoneChangeRequest from a dictrequest_phone_change_request_from_dict=RequestPhoneChangeRequest.from_dict(request_phone_change_request_dict)