74 lines
1.7 KiB
TypeScript
74 lines
1.7 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 { 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 {
|
|
}
|