Skip to main content

Properties

NameTypeDescriptionNotes
codestrError code
messagestrError message
detailsstrAdditional error details[optional]

Example

from kalshi_python.models.error_response_error import ErrorResponseError

# Create an instance with example data
error_response_error_instance = ErrorResponseError(
    # Add required fields here
)

# Convert to JSON string
json_str = error_response_error_instance.to_json()
print(json_str)

# Create from JSON string
error_response_error_from_json = ErrorResponseError.from_json(json_str)

# Convert to dict
error_response_error_dict = error_response_error_instance.to_dict()

# Create from dict
error_response_error_from_dict = ErrorResponseError.from_dict(error_response_error_dict)
[Back to Model list] [Back to API list] [Back to README]