@myinterview/global-api-sdk
    Preparing search index...

    Interface IApiResponseObj<T>

    interface IApiResponseObj<T = any> {
        callId: string;
        data?: T;
        errorCode: number;
        statusCode: STATUS_CODES;
        statusReason: string;
        time: number | Date;
    }

    Type Parameters

    • T = any
    Index

    Properties

    callId: string
    data?: T
    errorCode: number
    statusCode: STATUS_CODES
    statusReason: string
    time: number | Date