| Name | Type | Description | Notes |
|---|---|---|---|
| country_code | str | [optional] | |
| number | str | [optional] |
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)