26 lines
616 B
TypeScript
26 lines
616 B
TypeScript
/**
|
|
* BeReadyBackend
|
|
*
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
import { GetMessageDto } from './get-message-dto';
|
|
import { GetUserGroupDto } from './get-user-group-dto';
|
|
|
|
|
|
export interface GetGroupDetailsDto {
|
|
id?: number;
|
|
label?: string | null;
|
|
isFinished?: boolean;
|
|
title?: string | null;
|
|
description?: string | null;
|
|
duration?: number;
|
|
creationDate?: string;
|
|
messages?: Array<GetMessageDto> | null;
|
|
users?: Array<GetUserGroupDto> | null;
|
|
}
|
|
|