Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 977 Bytes

DetailsError.md

File metadata and controls

32 lines (23 loc) · 977 Bytes

DetailsError

Properties

Name Type Description Notes
code str [optional]
param str [optional]
message str [optional]
debug_message str [optional]

Example

from conekta.models.details_error import DetailsError

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

# convert the object into a dict
details_error_dict = details_error_instance.to_dict()
# create an instance of DetailsError from a dict
details_error_from_dict = DetailsError.from_dict(details_error_dict)

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