66 lines
1.6 KiB
TypeScript
66 lines
1.6 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 { BaseItemDto } from './baseItemDto';
|
|
|
|
/**
|
|
* Class ThemeMediaResult.
|
|
*/
|
|
export class ThemeMediaResult {
|
|
/**
|
|
* Gets or sets the items.
|
|
*/
|
|
'items'?: Array<BaseItemDto> | 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;
|
|
/**
|
|
* Gets or sets the owner id.
|
|
*/
|
|
'ownerId'?: string;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "items",
|
|
"baseName": "Items",
|
|
"type": "Array<BaseItemDto>"
|
|
},
|
|
{
|
|
"name": "totalRecordCount",
|
|
"baseName": "TotalRecordCount",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "startIndex",
|
|
"baseName": "StartIndex",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "ownerId",
|
|
"baseName": "OwnerId",
|
|
"type": "string"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return ThemeMediaResult.attributeTypeMap;
|
|
}
|
|
}
|
|
|