Module response

Source
Expand description

Response wrapper types for KiteConnect API responses.

All KiteConnect API responses follow a standard format:

{
    "status": "success" | "error",
    "data": { ... } | null,
    "message": "string",
    "error_type": "string" (optional)
}

Structs§

KiteResponse
Standard KiteConnect API response wrapper
RawResponse
Raw response for backward compatibility and debugging

Enums§

Status
Status enum for type-safe status handling