Definition of the type of zabbixApi Response

interface ZabbixApiResponse {
    error?: ZabbixApiError;
    id: number;
    jsonrpc: string;
    result?: any;
}

Properties

id: number
jsonrpc: string
result?: any