Mobile country code of the user
| Name | Type | Description | Notes |
|---|
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)