Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

TnLookupRequestError.md

File metadata and controls

29 lines (20 loc) · 1 KB

TnLookupRequestError

Properties

Name Type Description Notes
message str A description of what validation error occurred. [optional]

Example

from bandwidth.models.tn_lookup_request_error import TnLookupRequestError

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

# convert the object into a dict
tn_lookup_request_error_dict = tn_lookup_request_error_instance.to_dict()
# create an instance of TnLookupRequestError from a dict
tn_lookup_request_error_from_dict = TnLookupRequestError.from_dict(tn_lookup_request_error_dict)

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