Mobile number of the user
Name | Type | Description | Notes |
---|
from onelens_backend_client.models.mobile_number import MobileNumber
# TODO update the JSON string below
json = "{}"
# create an instance of MobileNumber from a JSON string
mobile_number_instance = MobileNumber.from_json(json)
# print the JSON string representation of the object
print(MobileNumber.to_json())
# convert the object into a dict
mobile_number_dict = mobile_number_instance.to_dict()
# create an instance of MobileNumber from a dict
mobile_number_form_dict = mobile_number.from_dict(mobile_number_dict)