Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

TfvError.md

File metadata and controls

32 lines (23 loc) · 1.08 KB

TfvError

A generic error object.

Properties

Name Type Description Notes
type str [optional]
description str [optional]
errors object Each key of this errors object refers to a field of the submitted object (using dot notation for nested objects), with the field being a key to an array of one or more errors for that field. [optional]

Example

from bandwidth.models.tfv_error import TfvError

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

# convert the object into a dict
tfv_error_dict = tfv_error_instance.to_dict()
# create an instance of TfvError from a dict
tfv_error_from_dict = TfvError.from_dict(tfv_error_dict)

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