JSON API response data interface

interface ResponseData {
    errorStr?: string;
    insId?: string;
    msgId: string;
    raw?: ResponseRaw[];
    rsp: Record<string, any>;
    status: number;
    statusStr?: string;
}

Properties

errorStr?: string
insId?: string
msgId: string
raw?: ResponseRaw[]
rsp: Record<string, any>
status: number
statusStr?: string