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

@@ -72,6 +72,12 @@ export interface PatchedPropertyRequest {
* @memberof PatchedPropertyRequest
*/
propertyType?: PropertyTypeRequest;
/**
*
* @type {number}
* @memberof PatchedPropertyRequest
*/
id?: number;
}
/**
@@ -93,6 +99,7 @@ export function PatchedPropertyRequestFromJSONTyped(json: any, ignoreDiscriminat
'propertyAmount': json['property_amount'] == null ? undefined : json['property_amount'],
'propertyType': json['property_type'] == null ? undefined : PropertyTypeRequestFromJSON(json['property_type']),
'id': json['id'] == null ? undefined : json['id'],
};
}
@@ -104,6 +111,7 @@ export function PatchedPropertyRequestToJSON(value?: PatchedPropertyRequest | nu
'property_amount': value['propertyAmount'],
'property_type': PropertyTypeRequestToJSON(value['propertyType']),
'id': value['id'],
};
}