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

    Type Alias AggregationSavedListLoadData

    Aggregation保存リスト詳細情報(LoadRawDataSavedListCommand応答)

    type AggregationSavedListLoadData = {
        canDefinitionCsvDownload: boolean;
        cols: string[];
        colSize: number;
        data: unknown[][];
        dataType: string;
        definitionName?: string;
        filterValueList?: AggregationFilterValue[];
        rowSize: number;
        savedListInfo: AggregationSavedListInfo;
    }
    Index

    Properties

    canDefinitionCsvDownload: boolean

    定義側でファイルダウンロードが許可されているか

    cols: string[]

    カラムラベル一覧

    colSize: number

    カラム数

    data: unknown[][]

    ローデータ(各行はObject[])

    dataType: string

    データ種別("MdcAggregationRawData" 等)

    definitionName?: string

    集計定義名

    filterValueList?: AggregationFilterValue[]

    フィルタ条件一覧

    rowSize: number

    行数

    保存リスト基本情報