Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.62 KB

File metadata and controls

34 lines (25 loc) · 1.62 KB

TransactError

Only returned in the event of an error condition for the Transact API

Properties

Name Type Description Notes
source str An element used to indicate the source of the issue causing this error. Must be one of * 'MDES' * 'INPUT' [optional]
error_code str A reason code or information pertaining to the error that has occurred. This will contain the error reported by the platform (e.g. authentication errors) or service (e.g. invalid TUR) [optional]
description str Description of the reason why the operation failed. [optional]
reason_code str A reason code or information pertaining to the error that has occurred from the service (e.g. invalid TUR). See API Response Errors [optional]
error_description str DEPRECATED Use description instead. [optional]

Example

from openapi_client.models.transact_error import TransactError

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

# convert the object into a dict
transact_error_dict = transact_error_instance.to_dict()
# create an instance of TransactError from a dict
transact_error_from_dict = TransactError.from_dict(transact_error_dict)

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