jellyfin-discord-bot/jellyfin/model/versionInfo.ts
2023-04-15 22:02:40 +02:00

110 lines
2.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';
/**
* Defines the MediaBrowser.Model.Updates.VersionInfo class.
*/
export class VersionInfo {
/**
* Gets or sets the version.
*/
'version'?: string;
/**
* Gets the version as a System.Version.
*/
'versionNumber'?: string;
/**
* Gets or sets the changelog for this version.
*/
'changelog'?: string | null;
/**
* Gets or sets the ABI that this version was built against.
*/
'targetAbi'?: string | null;
/**
* Gets or sets the source URL.
*/
'sourceUrl'?: string | null;
/**
* Gets or sets a checksum for the binary.
*/
'checksum'?: string | null;
/**
* Gets or sets a timestamp of when the binary was built.
*/
'timestamp'?: string | null;
/**
* Gets or sets the repository name.
*/
'repositoryName'?: string;
/**
* Gets or sets the repository url.
*/
'repositoryUrl'?: string;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "version",
"baseName": "version",
"type": "string"
},
{
"name": "versionNumber",
"baseName": "VersionNumber",
"type": "string"
},
{
"name": "changelog",
"baseName": "changelog",
"type": "string"
},
{
"name": "targetAbi",
"baseName": "targetAbi",
"type": "string"
},
{
"name": "sourceUrl",
"baseName": "sourceUrl",
"type": "string"
},
{
"name": "checksum",
"baseName": "checksum",
"type": "string"
},
{
"name": "timestamp",
"baseName": "timestamp",
"type": "string"
},
{
"name": "repositoryName",
"baseName": "repositoryName",
"type": "string"
},
{
"name": "repositoryUrl",
"baseName": "repositoryUrl",
"type": "string"
} ];
static getAttributeTypeMap() {
return VersionInfo.attributeTypeMap;
}
}