/** * 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 CreateNotepadRequestAllOfAnyOf */ export interface CreateNotepadRequestAllOfAnyOf { /** * * @type {string} * @memberof CreateNotepadRequestAllOfAnyOf */ 'text': string; } /** * Check if a given object implements the CreateNotepadRequestAllOfAnyOf interface. */ export declare function instanceOfCreateNotepadRequestAllOfAnyOf(value: object): value is CreateNotepadRequestAllOfAnyOf; export declare function CreateNotepadRequestAllOfAnyOfFromJSON(json: any): CreateNotepadRequestAllOfAnyOf; export declare function CreateNotepadRequestAllOfAnyOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateNotepadRequestAllOfAnyOf; export declare function CreateNotepadRequestAllOfAnyOfToJSON(json: any): CreateNotepadRequestAllOfAnyOf; export declare function CreateNotepadRequestAllOfAnyOfToJSONTyped(value?: CreateNotepadRequestAllOfAnyOf | null, ignoreDiscriminator?: boolean): any;