Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 961 Bytes

FieldError.md

File metadata and controls

30 lines (21 loc) · 961 Bytes

FieldError

Properties

Name Type Description Notes
field_name str The name of the field that contains the error [optional]
description str The error associated with the field [optional]

Example

from bandwidth.models.field_error import FieldError

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

# convert the object into a dict
field_error_dict = field_error_instance.to_dict()
# create an instance of FieldError from a dict
field_error_from_dict = FieldError.from_dict(field_error_dict)

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