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

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

Type declaration

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

    Optional, provides the latest update date for the results provided

  • Results: any[]
  • Optional Status?: string

    Optional, a message if this item failed to load

  • Optional Success?: boolean

    Optional, if not provided Success is assumed to be true