102 lines
2.4 KiB
TypeScript
102 lines
2.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 { VersionInfo } from './versionInfo';
|
|
|
|
/**
|
|
* Class PackageInfo.
|
|
*/
|
|
export class PackageInfo {
|
|
/**
|
|
* Gets or sets the name.
|
|
*/
|
|
'name'?: string;
|
|
/**
|
|
* Gets or sets a long description of the plugin containing features or helpful explanations.
|
|
*/
|
|
'description'?: string;
|
|
/**
|
|
* Gets or sets a short overview of what the plugin does.
|
|
*/
|
|
'overview'?: string;
|
|
/**
|
|
* Gets or sets the owner.
|
|
*/
|
|
'owner'?: string;
|
|
/**
|
|
* Gets or sets the category.
|
|
*/
|
|
'category'?: string;
|
|
/**
|
|
* Gets or sets the guid of the assembly associated with this plugin. This is used to identify the proper item for automatic updates.
|
|
*/
|
|
'guid'?: string;
|
|
/**
|
|
* Gets or sets the versions.
|
|
*/
|
|
'versions'?: Array<VersionInfo>;
|
|
/**
|
|
* Gets or sets the image url for the package.
|
|
*/
|
|
'imageUrl'?: string | null;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "name",
|
|
"baseName": "name",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "description",
|
|
"baseName": "description",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "overview",
|
|
"baseName": "overview",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "owner",
|
|
"baseName": "owner",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "category",
|
|
"baseName": "category",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "guid",
|
|
"baseName": "guid",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "versions",
|
|
"baseName": "versions",
|
|
"type": "Array<VersionInfo>"
|
|
},
|
|
{
|
|
"name": "imageUrl",
|
|
"baseName": "imageUrl",
|
|
"type": "string"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return PackageInfo.attributeTypeMap;
|
|
}
|
|
}
|
|
|