31 lines
981 B
TypeScript
31 lines
981 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 {PairPeriodTime} from "@model/pairPeriodTime";
|
|
|
|
/**
|
|
* Represents a request to configure the schedule settings.
|
|
*/
|
|
export interface ScheduleConfigurationRequest {
|
|
/**
|
|
* Gets or sets the cron expression for updating the schedule.
|
|
*/
|
|
cronUpdateSchedule?: string;
|
|
/**
|
|
* Gets or sets the start date of the term.
|
|
*/
|
|
startTerm: string;
|
|
/**
|
|
* Gets or sets the pair period times, keyed by pair number.
|
|
*/
|
|
pairPeriod: { [key: string]: PairPeriodTime; };
|
|
}
|