Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 862 Bytes

MobileNumber.md

File metadata and controls

29 lines (20 loc) · 862 Bytes

MobileNumber

Mobile number of the user

Properties

Name Type Description Notes

Example

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)

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