119 lines
2.6 KiB
TypeScript
119 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';
|
|
import { LogLevel } from './logLevel';
|
|
|
|
/**
|
|
* An activity log entry.
|
|
*/
|
|
export class ActivityLogEntry {
|
|
/**
|
|
* Gets or sets the identifier.
|
|
*/
|
|
'id'?: number;
|
|
/**
|
|
* Gets or sets the name.
|
|
*/
|
|
'name'?: string;
|
|
/**
|
|
* Gets or sets the overview.
|
|
*/
|
|
'overview'?: string | null;
|
|
/**
|
|
* Gets or sets the short overview.
|
|
*/
|
|
'shortOverview'?: string | null;
|
|
/**
|
|
* Gets or sets the type.
|
|
*/
|
|
'type'?: string;
|
|
/**
|
|
* Gets or sets the item identifier.
|
|
*/
|
|
'itemId'?: string | null;
|
|
/**
|
|
* Gets or sets the date.
|
|
*/
|
|
'date'?: Date;
|
|
/**
|
|
* Gets or sets the user identifier.
|
|
*/
|
|
'userId'?: string;
|
|
/**
|
|
* Gets or sets the user primary image tag.
|
|
*/
|
|
'userPrimaryImageTag'?: string | null;
|
|
'severity'?: LogLevel;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "id",
|
|
"baseName": "Id",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "name",
|
|
"baseName": "Name",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "overview",
|
|
"baseName": "Overview",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "shortOverview",
|
|
"baseName": "ShortOverview",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "type",
|
|
"baseName": "Type",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "itemId",
|
|
"baseName": "ItemId",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "date",
|
|
"baseName": "Date",
|
|
"type": "Date"
|
|
},
|
|
{
|
|
"name": "userId",
|
|
"baseName": "UserId",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "userPrimaryImageTag",
|
|
"baseName": "UserPrimaryImageTag",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "severity",
|
|
"baseName": "Severity",
|
|
"type": "LogLevel"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return ActivityLogEntry.attributeTypeMap;
|
|
}
|
|
}
|
|
|
|
export namespace ActivityLogEntry {
|
|
}
|