AuthenticationInfoQueryResult

@Serializable
data class AuthenticationInfoQueryResult(val items: List<AuthenticationInfo>, val totalRecordCount: Int, val startIndex: Int)

Query result container.

Constructors

Link copied to clipboard
constructor(items: List<AuthenticationInfo>, totalRecordCount: Int, startIndex: Int)

Properties

Link copied to clipboard
@SerialName(value = "Items")
val items: List<AuthenticationInfo>

The items.

Link copied to clipboard
@SerialName(value = "StartIndex")
val startIndex: Int

The index of the first record in Items.

Link copied to clipboard
@SerialName(value = "TotalRecordCount")
val totalRecordCount: Int

The total number of records available.