-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FE new model generated + merged location onto confirmation
- Loading branch information
1 parent
43824be
commit be31367
Showing
43 changed files
with
126 additions
and
1,830 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
@@ -31,8 +31,8 @@ import { | |
Ok, | ||
PatientDtoOut, | ||
PatientRegistrationDtoIn, | ||
PatientRegistrationResponseDtoOut, | ||
PatientUpdateDtoIn, | ||
PatientVaccinationSlotSelectionDtoIn, | ||
PersonnelDtoOut, | ||
QuestionDtoOut, | ||
ServiceHealthDtoOut, | ||
|
@@ -1176,88 +1176,6 @@ export class DefaultService { | |
); | ||
} | ||
|
||
/** | ||
* Book a vaccination slot for given patient by given params. First available slot is selected. Filters by and clause. Empty values select ALL. | ||
* @param id Filter by slot id. | ||
* @param locationId Filter by location id. | ||
* @param from Filter with from greater or equal to. | ||
* @param to Filter with to lower or equal to. | ||
* @param patientVaccinationSlotSelectionDtoIn | ||
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. | ||
* @param reportProgress flag to report request and response progress. | ||
*/ | ||
public apiAdminVaccinationSlotsBookPost(id?: string, locationId?: string, from?: string, to?: string, patientVaccinationSlotSelectionDtoIn?: PatientVaccinationSlotSelectionDtoIn, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json' }): Observable<VaccinationSlotDtoOut>; | ||
public apiAdminVaccinationSlotsBookPost(id?: string, locationId?: string, from?: string, to?: string, patientVaccinationSlotSelectionDtoIn?: PatientVaccinationSlotSelectionDtoIn, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json' }): Observable<HttpResponse<VaccinationSlotDtoOut>>; | ||
public apiAdminVaccinationSlotsBookPost(id?: string, locationId?: string, from?: string, to?: string, patientVaccinationSlotSelectionDtoIn?: PatientVaccinationSlotSelectionDtoIn, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json' }): Observable<HttpEvent<VaccinationSlotDtoOut>>; | ||
public apiAdminVaccinationSlotsBookPost(id?: string, locationId?: string, from?: string, to?: string, patientVaccinationSlotSelectionDtoIn?: PatientVaccinationSlotSelectionDtoIn, observe: any = 'body', reportProgress: boolean = false, options?: { httpHeaderAccept?: 'application/json' }): Observable<any> { | ||
|
||
let queryParameters = new HttpParams({ encoder: this.encoder }); | ||
if (id !== undefined && id !== null) { | ||
queryParameters = this.addToHttpParams(queryParameters, | ||
<any>id, 'id'); | ||
} | ||
if (locationId !== undefined && locationId !== null) { | ||
queryParameters = this.addToHttpParams(queryParameters, | ||
<any>locationId, 'locationId'); | ||
} | ||
if (from !== undefined && from !== null) { | ||
queryParameters = this.addToHttpParams(queryParameters, | ||
<any>from, 'from'); | ||
} | ||
if (to !== undefined && to !== null) { | ||
queryParameters = this.addToHttpParams(queryParameters, | ||
<any>to, 'to'); | ||
} | ||
|
||
let headers = this.defaultHeaders; | ||
|
||
let credential: string | undefined; | ||
// authentication (jwtAuth) required | ||
credential = this.configuration.lookupCredential('jwtAuth'); | ||
if (credential) { | ||
headers = headers.set('Authorization', 'Bearer ' + credential); | ||
} | ||
|
||
let httpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept; | ||
if (httpHeaderAcceptSelected === undefined) { | ||
// to determine the Accept header | ||
const httpHeaderAccepts: string[] = [ | ||
'application/json' | ||
]; | ||
httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts); | ||
} | ||
if (httpHeaderAcceptSelected !== undefined) { | ||
headers = headers.set('Accept', httpHeaderAcceptSelected); | ||
} | ||
|
||
|
||
// to determine the Content-Type header | ||
const consumes: string[] = [ | ||
'application/json' | ||
]; | ||
const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes); | ||
if (httpContentTypeSelected !== undefined) { | ||
headers = headers.set('Content-Type', httpContentTypeSelected); | ||
} | ||
|
||
let responseType: 'text' | 'json' = 'json'; | ||
if (httpHeaderAcceptSelected && httpHeaderAcceptSelected.startsWith('text')) { | ||
responseType = 'text'; | ||
} | ||
|
||
return this.httpClient.post<VaccinationSlotDtoOut>(`${this.configuration.basePath}/api/admin/vaccination-slots/book`, | ||
patientVaccinationSlotSelectionDtoIn, | ||
{ | ||
params: queryParameters, | ||
responseType: <any>responseType, | ||
withCredentials: this.configuration.withCredentials, | ||
headers: headers, | ||
observe: observe, | ||
reportProgress: reportProgress | ||
} | ||
); | ||
} | ||
|
||
/** | ||
* Get vaccination spots matching | ||
* @param id Filter by slot id. | ||
|
@@ -1532,9 +1450,9 @@ export class DefaultService { | |
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. | ||
* @param reportProgress flag to report request and response progress. | ||
*/ | ||
public apiPatientPost(captcha: string, patientRegistrationDtoIn?: PatientRegistrationDtoIn, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json' }): Observable<VaccinationSlotDtoOut>; | ||
public apiPatientPost(captcha: string, patientRegistrationDtoIn?: PatientRegistrationDtoIn, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json' }): Observable<HttpResponse<VaccinationSlotDtoOut>>; | ||
public apiPatientPost(captcha: string, patientRegistrationDtoIn?: PatientRegistrationDtoIn, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json' }): Observable<HttpEvent<VaccinationSlotDtoOut>>; | ||
public apiPatientPost(captcha: string, patientRegistrationDtoIn?: PatientRegistrationDtoIn, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json' }): Observable<PatientRegistrationResponseDtoOut>; | ||
public apiPatientPost(captcha: string, patientRegistrationDtoIn?: PatientRegistrationDtoIn, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json' }): Observable<HttpResponse<PatientRegistrationResponseDtoOut>>; | ||
public apiPatientPost(captcha: string, patientRegistrationDtoIn?: PatientRegistrationDtoIn, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json' }): Observable<HttpEvent<PatientRegistrationResponseDtoOut>>; | ||
public apiPatientPost(captcha: string, patientRegistrationDtoIn?: PatientRegistrationDtoIn, observe: any = 'body', reportProgress: boolean = false, options?: { httpHeaderAccept?: 'application/json' }): Observable<any> { | ||
if (captcha === null || captcha === undefined) { | ||
throw new Error('Required parameter captcha was null or undefined when calling apiPatientPost.'); | ||
|
@@ -1575,7 +1493,7 @@ export class DefaultService { | |
responseType = 'text'; | ||
} | ||
|
||
return this.httpClient.post<VaccinationSlotDtoOut>(`${this.configuration.basePath}/api/patient`, | ||
return this.httpClient.post<PatientRegistrationResponseDtoOut>(`${this.configuration.basePath}/api/patient`, | ||
patientRegistrationDtoIn, | ||
{ | ||
params: queryParameters, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
@@ -19,5 +19,6 @@ export interface DataCorrectnessConfirmationDetailDtoOut { | |
id: string; | ||
notes?: string | null; | ||
nurse?: PersonnelDtoOut; | ||
patientId: string; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
21 changes: 21 additions & 0 deletions
21
frontend/src/app/generated/model/patientRegistrationResponseDtoOut.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/** | ||
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
import { VaccinationSlotDtoOut } from './vaccinationSlotDtoOut'; | ||
import { LocationDtoOut } from './locationDtoOut'; | ||
|
||
|
||
export interface PatientRegistrationResponseDtoOut { | ||
location: LocationDtoOut; | ||
patientId: string; | ||
slot: VaccinationSlotDtoOut; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
17 changes: 0 additions & 17 deletions
17
frontend/src/app/generated/model/patientVaccinationSlotSelectionDtoIn.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Mild Blue - Covid Vaxx | ||
* Covid Vaxx API | ||
* | ||
* The version of the OpenAPI document: ae34d9c772e0524627921573940008b06e964a60 | ||
* The version of the OpenAPI document: development | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
Oops, something went wrong.