fix: can get null for nullable request

This commit is contained in:
2024-06-06 23:31:34 +03:00
parent b388fb039a
commit a7d48f3deb
2 changed files with 4 additions and 10 deletions

View File

@ -9,8 +9,6 @@
* 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.
*/
@ -23,8 +21,4 @@ export interface ScheduleConfigurationRequest {
* 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; };
}