| Name |
Type |
Description |
Notes |
| number |
str |
Phone number |
|
| reference_id |
str |
external unique ID. String up to 32 characters containing only alpha numeric characters. Please note: messages with duplicate reference_id will be rejected |
[optional] |
from bsg_api.models.phone import Phone
# TODO update the JSON string below
json = "{}"
# create an instance of Phone from a JSON string
phone_instance = Phone.from_json(json)
# print the JSON string representation of the object
print(Phone.to_json())
# convert the object into a dict
phone_dict = phone_instance.to_dict()
# create an instance of Phone from a dict
phone_from_dict = Phone.from_dict(phone_dict)
[Back to Model list] [Back to API list] [Back to README]