Member Junction
    Preparing search index...

    Type Alias DatasetResultType

    Result of loading a dataset. Contains all dataset items with their data and metadata. Datasets are collections of related entity data loaded together.

    type DatasetResultType = {
        DatasetID: string;
        DatasetName: string;
        LatestUpdateDate: Date;
        Results: DatasetItemResultType[];
        Status: string;
        Success: boolean;
    }
    Index

    Properties

    DatasetID: string
    DatasetName: string
    LatestUpdateDate: Date
    Status: string
    Success: boolean