/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { CreateBookmarkRequestLocation } from './CreateBookmarkRequestLocation'; import type { CreateBookmarkRequestTagsInner } from './CreateBookmarkRequestTagsInner'; import type { CommentCreate } from './CommentCreate'; import type { CreateBookmarkRequestParentId } from './CreateBookmarkRequestParentId'; /** * * @export * @interface CreateNotepadRequest */ export interface CreateNotepadRequest { /** * * @type {string} * @memberof CreateNotepadRequest */ 'name'?: string | null; /** * * @type {CreateBookmarkRequestParentId} * @memberof CreateNotepadRequest */ 'parentId': CreateBookmarkRequestParentId; /** * * @type {Array} * @memberof CreateNotepadRequest */ 'tags'?: Array; /** * * @type {CommentCreate} * @memberof CreateNotepadRequest */ 'comment'?: CommentCreate | null; /** * * @type {CreateBookmarkRequestLocation} * @memberof CreateNotepadRequest */ 'location'?: CreateBookmarkRequestLocation | null; /** * * @type {string} * @memberof CreateNotepadRequest */ 'text': string; } /** * Check if a given object implements the CreateNotepadRequest interface. */ export declare function instanceOfCreateNotepadRequest(value: object): value is CreateNotepadRequest; export declare function CreateNotepadRequestFromJSON(json: any): CreateNotepadRequest; export declare function CreateNotepadRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateNotepadRequest; export declare function CreateNotepadRequestToJSON(json: any): CreateNotepadRequest; export declare function CreateNotepadRequestToJSONTyped(value?: CreateNotepadRequest | null, ignoreDiscriminator?: boolean): any;