Member Junction
    Preparing search index...

    Result of a IFeatureDataAccess.fetchRows call.

    interface FetchRowsResult {
        ErrorMessage?: string;
        Rows: SourceRow[];
        Success: boolean;
    }
    Index

    Properties

    ErrorMessage?: string

    Error detail when Success is false.

    Rows: SourceRow[]

    The fetched rows (empty when Success is false).

    Success: boolean

    Whether the read succeeded.