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

@@ -90,6 +90,12 @@ export interface OpenDataCategoryRequest {
* @memberof OpenDataCategoryRequest
*/
comment?: string;
/**
*
* @type {number}
* @memberof OpenDataCategoryRequest
*/
id?: number;
}
/**
@@ -117,6 +123,7 @@ export function OpenDataCategoryRequestFromJSONTyped(json: any, ignoreDiscrimina
'name': json['name'],
'description': json['description'] == null ? undefined : json['description'],
'comment': json['comment'] == null ? undefined : json['comment'],
'id': json['id'] == null ? undefined : json['id'],
};
}
@@ -131,6 +138,7 @@ export function OpenDataCategoryRequestToJSON(value?: OpenDataCategoryRequest |
'name': value['name'],
'description': value['description'],
'comment': value['comment'],
'id': value['id'],
};
}