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

@@ -65,6 +65,12 @@ export interface KeywordRequest {
* @memberof KeywordRequest
*/
description?: string;
/**
*
* @type {number}
* @memberof KeywordRequest
*/
id?: number;
}
/**
@@ -87,6 +93,7 @@ export function KeywordRequestFromJSONTyped(json: any, ignoreDiscriminator: bool
'name': json['name'],
'description': json['description'] == null ? undefined : json['description'],
'id': json['id'] == null ? undefined : json['id'],
};
}
@@ -98,6 +105,7 @@ export function KeywordRequestToJSON(value?: KeywordRequest | null): any {
'name': value['name'],
'description': value['description'],
'id': value['id'],
};
}