型・APIリファレンス
    Preparing search index...

    Interface WebApiResponse<T>

    WebAPIのレスポンス

    interface WebApiResponse<T = Record<string, never>> {
        data: T & MtpCommonResponse;
        error?: MtpErrorResponse;
        isSuccess: boolean;
    }

    Type Parameters

    • T = Record<string, never>

      WebAPIの独自の返却値の型

    Index

    Properties

    Properties

    成功時のレスポンスデータ

    Commandの例外発生時の例外レスポンス

    isSuccess: boolean

    例外が発生せずに処理が成功したか