Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 940 Bytes

File metadata and controls

29 lines (20 loc) · 940 Bytes

MobileCountryCode

Mobile country code of the user

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.mobile_country_code import MobileCountryCode

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

# convert the object into a dict
mobile_country_code_dict = mobile_country_code_instance.to_dict()
# create an instance of MobileCountryCode from a dict
mobile_country_code_form_dict = mobile_country_code.from_dict(mobile_country_code_dict)

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