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

@@ -65,13 +65,13 @@ export interface PatchedProperty {
* @type {number}
* @memberof PatchedProperty
*/
readonly id?: number;
id?: number;
/**
*
* @type {string}
* @type {number}
* @memberof PatchedProperty
*/
propertyAmount?: string;
propertyAmount?: number;
/**
*
* @type {PropertyType}
@@ -109,6 +109,7 @@ export function PatchedPropertyToJSON(value?: PatchedProperty | null): any {
}
return {
'id': value['id'],
'property_amount': value['propertyAmount'],
'property_type': PropertyTypeToJSON(value['propertyType']),
};