神岛 API 文档 - ArenaPro版
    Preparing search index...

    Type Alias ResultValue<T>

    ResultValue:
        | {
            createTime: number;
            key: string;
            updateTime: number;
            value: T;
            version: string;
        }
        | undefined

    Type Parameters

    • T

    Type declaration

    • {
          createTime: number;
          key: string;
          updateTime: number;
          value: T;
          version: string;
      }
      • createTime: number

        数据创建时间戳(毫秒)。

        The timestamp of the data creation (in milliseconds).

      • key: string

        数据键名。

        The key of the data.

      • updateTime: number

        数据更新时间戳(毫秒)。

        The timestamp of the data update (in milliseconds).

      • value: T

        数据值。

        The value of the data.

      • version: string

        数据版本号。

        The version of the data.

    • undefined

    数据查询操作返回的结果值,包含数据本身及其元信息。

    The result value returned from a data query operation, containing the data itself and its metadata.

    数据的类型。

    The type of the data.