Interface AuthenticationInfoQueryResult

Query result container.

AuthenticationInfoQueryResult

interface AuthenticationInfoQueryResult {
    Items?: AuthenticationInfo[];
    StartIndex?: number;
    TotalRecordCount?: number;
}

Properties

Gets or sets the items.

AuthenticationInfoQueryResult

StartIndex?: number

Gets or sets the index of the first record in Items.

AuthenticationInfoQueryResult

TotalRecordCount?: number

Gets or sets the total number of records available.

AuthenticationInfoQueryResult