jellyfin-discord-bot/jellyfin/model/groupInfoDto.ts

74 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-04-15 22:02:40 +02:00
/**
* 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 { GroupStateType } from './groupStateType';
/**
* Class GroupInfoDto.
*/
export class GroupInfoDto {
/**
* Gets the group identifier.
*/
'groupId'?: string;
/**
* Gets the group name.
*/
'groupName'?: string;
'state'?: GroupStateType;
/**
* Gets the participants.
*/
'participants'?: Array<string>;
/**
* Gets the date when this DTO has been created.
*/
'lastUpdatedAt'?: Date;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "groupId",
"baseName": "GroupId",
"type": "string"
},
{
"name": "groupName",
"baseName": "GroupName",
"type": "string"
},
{
"name": "state",
"baseName": "State",
"type": "GroupStateType"
},
{
"name": "participants",
"baseName": "Participants",
"type": "Array<string>"
},
{
"name": "lastUpdatedAt",
"baseName": "LastUpdatedAt",
"type": "Date"
} ];
static getAttributeTypeMap() {
return GroupInfoDto.attributeTypeMap;
}
}
export namespace GroupInfoDto {
}