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

@@ -74,6 +74,12 @@ export interface PatchedAutomationRequest {
* @memberof PatchedAutomationRequest
*/
disabled?: boolean;
/**
*
* @type {number}
* @memberof PatchedAutomationRequest
*/
id?: number;
}
/**
@@ -101,6 +107,7 @@ export function PatchedAutomationRequestFromJSONTyped(json: any, ignoreDiscrimin
'param3': json['param_3'] == null ? undefined : json['param_3'],
'order': json['order'] == null ? undefined : json['order'],
'disabled': json['disabled'] == null ? undefined : json['disabled'],
'id': json['id'] == null ? undefined : json['id'],
};
}
@@ -118,6 +125,7 @@ export function PatchedAutomationRequestToJSON(value?: PatchedAutomationRequest
'param_3': value['param3'],
'order': value['order'],
'disabled': value['disabled'],
'id': value['id'],
};
}