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 PatchedBookmarkletImportRequest {
* @memberof PatchedBookmarkletImportRequest
*/
html?: string;
/**
*
* @type {number}
* @memberof PatchedBookmarkletImportRequest
*/
id?: number;
}
/**
@@ -52,6 +58,7 @@ export function PatchedBookmarkletImportRequestFromJSONTyped(json: any, ignoreDi
'url': json['url'] == null ? undefined : json['url'],
'html': json['html'] == null ? undefined : json['html'],
'id': json['id'] == null ? undefined : json['id'],
};
}
@@ -63,6 +70,7 @@ export function PatchedBookmarkletImportRequestToJSON(value?: PatchedBookmarklet
'url': value['url'],
'html': value['html'],
'id': value['id'],
};
}