Member Junction
    Preparing search index...

    Type Alias DatasetItemResultType

    Result for a single item within a dataset. Represents one entity's data within the larger dataset collection.

    type DatasetItemResultType = {
        Code: string;
        EntityID: string;
        EntityName: string;
        LatestUpdateDate?: Date;
        Results: any[];
        Status?: string;
        Success?: boolean;
    }
    Index

    Properties

    Code: string
    EntityID: string
    EntityName: string
    LatestUpdateDate?: Date

    Optional, provides the latest update date for the results provided

    Results: any[]
    Status?: string

    Optional, a message if this item failed to load

    Success?: boolean

    Optional, if not provided Success is assumed to be true