54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
/**
|
|
* Jellyfin API
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 10.8.9
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
import { RequestFile } from './models';
|
|
import { AuthenticationInfo } from './authenticationInfo';
|
|
|
|
export class AuthenticationInfoQueryResult {
|
|
/**
|
|
* Gets or sets the items.
|
|
*/
|
|
'items'?: Array<AuthenticationInfo> | null;
|
|
/**
|
|
* Gets or sets the total number of records available.
|
|
*/
|
|
'totalRecordCount'?: number;
|
|
/**
|
|
* Gets or sets the index of the first record in Items.
|
|
*/
|
|
'startIndex'?: number;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "items",
|
|
"baseName": "Items",
|
|
"type": "Array<AuthenticationInfo>"
|
|
},
|
|
{
|
|
"name": "totalRecordCount",
|
|
"baseName": "TotalRecordCount",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "startIndex",
|
|
"baseName": "StartIndex",
|
|
"type": "number"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return AuthenticationInfoQueryResult.attributeTypeMap;
|
|
}
|
|
}
|
|
|