Member Junction
    Preparing search index...

    Result type for RunViewsSystemUser method calls - contains execution results and metadata

    interface RunViewSystemUserResult {
        ErrorMessage?: string;
        ExecutionTime?: number;
        Results: RunViewSystemUserResultRow[];
        RowCount?: number;
        Success: boolean;
        TotalRowCount?: number;
        UserViewRunID?: string;
    }
    Index

    Properties

    ErrorMessage?: string

    Error message if the execution failed (optional)

    ExecutionTime?: number

    Time taken to execute the view in milliseconds (optional)

    Array of result rows containing the actual data

    RowCount?: number

    Number of rows returned in this result set (optional)

    Success: boolean

    Whether the view execution was successful

    TotalRowCount?: number

    Total number of rows available (before pagination) (optional)

    UserViewRunID?: string

    Unique identifier for this view execution run (optional)