fixed api client generation

This commit is contained in:
vabene1111
2024-04-22 19:33:09 +02:00
parent c47e46263c
commit 12cf9da8fc
145 changed files with 914 additions and 175 deletions

View File

@@ -71,6 +71,12 @@ export interface OpenDataVersionRequest {
* @memberof OpenDataVersionRequest
*/
comment?: string;
/**
*
* @type {number}
* @memberof OpenDataVersionRequest
*/
id?: number;
}
/**
@@ -95,6 +101,7 @@ export function OpenDataVersionRequestFromJSONTyped(json: any, ignoreDiscriminat
'name': json['name'],
'code': json['code'],
'comment': json['comment'] == null ? undefined : json['comment'],
'id': json['id'] == null ? undefined : json['id'],
};
}
@@ -107,6 +114,7 @@ export function OpenDataVersionRequestToJSON(value?: OpenDataVersionRequest | nu
'name': value['name'],
'code': value['code'],
'comment': value['comment'],
'id': value['id'],
};
}