Query result container.

DeviceInfoDtoQueryResult

interface DeviceInfoDtoQueryResult {
    Items?: DeviceInfoDto[];
    StartIndex?: number;
    TotalRecordCount?: number;
}

Properties

Items?: DeviceInfoDto[]

Gets or sets the items.

DeviceInfoDtoQueryResult

StartIndex?: number

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

DeviceInfoDtoQueryResult

TotalRecordCount?: number

Gets or sets the total number of records available.

DeviceInfoDtoQueryResult