Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1004 Bytes

File metadata and controls

31 lines (22 loc) · 1004 Bytes

TradingErrorSchema

Properties

Name Type Description Notes
message str
code float
descriptor str [optional]

Example

from fireblocks.models.trading_error_schema import TradingErrorSchema

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

# convert the object into a dict
trading_error_schema_dict = trading_error_schema_instance.to_dict()
# create an instance of TradingErrorSchema from a dict
trading_error_schema_from_dict = TradingErrorSchema.from_dict(trading_error_schema_dict)

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