Skip to content

Commit

Permalink
ISI-744 Erweiterung saveBauvorhaben um Abfrage UUID Queryparameter
Browse files Browse the repository at this point in the history
  • Loading branch information
albrecht.schaenzel committed Sep 1, 2023
1 parent 530893b commit b4bed13
Show file tree
Hide file tree
Showing 2 changed files with 134 additions and 126 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import {

export interface CreateBauvorhabenRequest {
bauvorhabenDto: BauvorhabenDto;
abfrage?: string;
}

export interface DeleteBauvorhabenRequest {
Expand Down Expand Up @@ -68,6 +69,10 @@ export class BauvorhabenApi extends runtime.BaseAPI {

const queryParameters: any = {};

if (requestParameters.abfrage !== undefined) {
queryParameters['abfrage'] = requestParameters.abfrage;
}

const headerParameters: runtime.HTTPHeaders = {};

headerParameters['Content-Type'] = 'application/json';
Expand Down
Loading

0 comments on commit b4bed13

Please sign in to comment.