feat: add api models
This commit is contained in:
33
src/shared/responses/v1/campusDetailsResponse.ts
Normal file
33
src/shared/responses/v1/campusDetailsResponse.ts
Normal file
@ -0,0 +1,33 @@
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Represents detailed information about a campus.
|
||||
*/
|
||||
export interface CampusDetailsResponse {
|
||||
/**
|
||||
* Gets or sets the unique identifier of the campus.
|
||||
*/
|
||||
id: number;
|
||||
/**
|
||||
* Gets or sets the code name of the campus.
|
||||
*/
|
||||
codeName: string;
|
||||
/**
|
||||
* Gets or sets the full name of the campus (optional).
|
||||
*/
|
||||
fullName?: string;
|
||||
/**
|
||||
* Gets or sets the address of the campus (optional).
|
||||
*/
|
||||
address?: string;
|
||||
}
|
Reference in New Issue
Block a user