Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 980 Bytes

File metadata and controls

31 lines (22 loc) · 980 Bytes

FalsumError

The error interface that consists of detailed info about why the validation has failed

Properties

Name Type Description Notes
message str
fields List[FalsumField]

Example

from wallet.models.falsum_error import FalsumError

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

# convert the object into a dict
falsum_error_dict = falsum_error_instance.to_dict()
# create an instance of FalsumError from a dict
falsum_error_form_dict = falsum_error.from_dict(falsum_error_dict)

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