Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

LookupErrorResponse

Properties

Name Type Description Notes
links List[LinkSchema] [optional]
data object The phone number lookup response data [optional]
errors List[LookupErrorSchema] [optional]

Example

from bandwidth.models.lookup_error_response import LookupErrorResponse

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

# convert the object into a dict
lookup_error_response_dict = lookup_error_response_instance.to_dict()
# create an instance of LookupErrorResponse from a dict
lookup_error_response_from_dict = LookupErrorResponse.from_dict(lookup_error_response_dict)

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