30 lines
913 B
TypeScript
30 lines
913 B
TypeScript
/**
|
|
* MIREA Schedule Web API
|
|
* This API provides a convenient interface for retrieving data stored in the database. Special attention was paid to the lightweight and easy transfer of all necessary data. Made by the Winsomnia team.
|
|
*
|
|
* OpenAPI spec version: 1.0
|
|
* Contact: support@winsomnia.net
|
|
*
|
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
* Do not edit the class manually.
|
|
*/
|
|
import { GroupScheduleInfo } from './groupScheduleInfo';
|
|
|
|
/**
|
|
* Represents a response containing schedule information for a group.
|
|
*/
|
|
export interface GroupScheduleResponse {
|
|
/**
|
|
* Gets or sets the name of the group.
|
|
*/
|
|
group: string;
|
|
/**
|
|
* Gets or sets the ID of the group.
|
|
*/
|
|
groupId: number;
|
|
/**
|
|
* Gets or sets the schedules for the group.
|
|
*/
|
|
schedules: Array<GroupScheduleInfo>;
|
|
} |