/** * 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. */ /** * * @export * @interface PutNotepadContentRequest */ export interface PutNotepadContentRequest { /** * The markdown content to replace the notepad with * @type {string} * @memberof PutNotepadContentRequest */ 'markdown': string; } /** * Check if a given object implements the PutNotepadContentRequest interface. */ export declare function instanceOfPutNotepadContentRequest(value: object): value is PutNotepadContentRequest; export declare function PutNotepadContentRequestFromJSON(json: any): PutNotepadContentRequest; export declare function PutNotepadContentRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PutNotepadContentRequest; export declare function PutNotepadContentRequestToJSON(json: any): PutNotepadContentRequest; export declare function PutNotepadContentRequestToJSONTyped(value?: PutNotepadContentRequest | null, ignoreDiscriminator?: boolean): any;