no longer split schema in request/response

This commit is contained in:
vabene1111
2024-04-27 10:40:09 +02:00
parent 846c3e36cc
commit e405aab310
104 changed files with 3057 additions and 1125 deletions

View File

@@ -31,7 +31,7 @@ export interface PatchedAutomation {
* @type {number}
* @memberof PatchedAutomation
*/
readonly id?: number;
id?: number;
/**
*
* @type {AutomationTypeEnum}
@@ -124,6 +124,7 @@ export function PatchedAutomationToJSON(value?: PatchedAutomation | null): any {
}
return {
'id': value['id'],
'type': AutomationTypeEnumToJSON(value['type']),
'name': value['name'],
'description': value['description'],