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

@@ -96,6 +96,12 @@ export interface PatchedOpenDataPropertyRequest {
* @memberof PatchedOpenDataPropertyRequest
*/
comment?: string;
/**
*
* @type {number}
* @memberof PatchedOpenDataPropertyRequest
*/
id?: number;
}
/**
@@ -121,6 +127,7 @@ export function PatchedOpenDataPropertyRequestFromJSONTyped(json: any, ignoreDis
'unit': json['unit'] == null ? undefined : json['unit'],
'fdcId': json['fdc_id'] == null ? undefined : json['fdc_id'],
'comment': json['comment'] == null ? undefined : json['comment'],
'id': json['id'] == null ? undefined : json['id'],
};
}
@@ -136,6 +143,7 @@ export function PatchedOpenDataPropertyRequestToJSON(value?: PatchedOpenDataProp
'unit': value['unit'],
'fdc_id': value['fdcId'],
'comment': value['comment'],
'id': value['id'],
};
}