| Name |
Type |
Description |
Notes |
| message |
str |
It may be one of the following errors: - Phone number is already exist in contact book - There are exists another contact with the same phone number, use that instead of change phone of this - Invalid phone number format - Pass correct phone number |
[optional] |
| errors |
List[object] |
errors |
[optional] |
from bsg_api.models.contact_create422_response import ContactCreate422Response
# TODO update the JSON string below
json = "{}"
# create an instance of ContactCreate422Response from a JSON string
contact_create422_response_instance = ContactCreate422Response.from_json(json)
# print the JSON string representation of the object
print(ContactCreate422Response.to_json())
# convert the object into a dict
contact_create422_response_dict = contact_create422_response_instance.to_dict()
# create an instance of ContactCreate422Response from a dict
contact_create422_response_from_dict = ContactCreate422Response.from_dict(contact_create422_response_dict)
[Back to Model list] [Back to API list] [Back to README]