Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 890 Bytes

File metadata and controls

30 lines (21 loc) · 890 Bytes

PhoneNumber

Properties

Name Type Description Notes
country_code str [optional]
number str [optional]

Example

from boldsign.models.phone_number import PhoneNumber

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

# convert the object into a dict
phone_number_dict = phone_number_instance.to_dict()
# create an instance of PhoneNumber from a dict
phone_number_from_dict = PhoneNumber.from_dict(phone_number_dict)

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