Name |
Type |
Description |
Notes |
first_name |
str |
The first name of the business contact using the toll-free number. |
|
last_name |
str |
The last name of the business contact using the toll-free number. |
|
email |
str |
|
|
phone_number |
str |
Contact telephone number |
|
from bandwidth.models.contact import Contact
# TODO update the JSON string below
json = "{}"
# create an instance of Contact from a JSON string
contact_instance = Contact.from_json(json)
# print the JSON string representation of the object
print(Contact.to_json())
# convert the object into a dict
contact_dict = contact_instance.to_dict()
# create an instance of Contact from a dict
contact_from_dict = Contact.from_dict(contact_dict)
[Back to Model list] [Back to API list] [Back to README]