Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 858 Bytes

File metadata and controls

30 lines (21 loc) · 858 Bytes

ResultCode

Properties

Name Type Description Notes
code int
message str [optional]

Example

from lighter.models.result_code import ResultCode

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

# convert the object into a dict
result_code_dict = result_code_instance.to_dict()
# create an instance of ResultCode from a dict
result_code_from_dict = ResultCode.from_dict(result_code_dict)

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