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

@@ -31,6 +31,12 @@ export interface PatchedRecipeBookEntryRequest {
* @memberof PatchedRecipeBookEntryRequest
*/
recipe?: number;
/**
*
* @type {number}
* @memberof PatchedRecipeBookEntryRequest
*/
id?: number;
}
/**
@@ -52,6 +58,7 @@ export function PatchedRecipeBookEntryRequestFromJSONTyped(json: any, ignoreDisc
'book': json['book'] == null ? undefined : json['book'],
'recipe': json['recipe'] == null ? undefined : json['recipe'],
'id': json['id'] == null ? undefined : json['id'],
};
}
@@ -63,6 +70,7 @@ export function PatchedRecipeBookEntryRequestToJSON(value?: PatchedRecipeBookEnt
'book': value['book'],
'recipe': value['recipe'],
'id': value['id'],
};
}