Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

LookupErrorSchema

Properties

Name Type Description Notes
code str Validation error code [optional]
description str Description of validation error [optional]
type str Type of validation error [optional]
meta LookupErrorSchemaMeta [optional]

Example

from bandwidth.models.lookup_error_schema import LookupErrorSchema

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

# convert the object into a dict
lookup_error_schema_dict = lookup_error_schema_instance.to_dict()
# create an instance of LookupErrorSchema from a dict
lookup_error_schema_from_dict = LookupErrorSchema.from_dict(lookup_error_schema_dict)

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