/** * 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 CreateNotepadSnapshotRequest */ export interface CreateNotepadSnapshotRequest { /** * A human-readable label for the snapshot (e.g. "before restructure") * @type {string} * @memberof CreateNotepadSnapshotRequest */ 'label'?: string; } /** * Check if a given object implements the CreateNotepadSnapshotRequest interface. */ export declare function instanceOfCreateNotepadSnapshotRequest(value: object): value is CreateNotepadSnapshotRequest; export declare function CreateNotepadSnapshotRequestFromJSON(json: any): CreateNotepadSnapshotRequest; export declare function CreateNotepadSnapshotRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateNotepadSnapshotRequest; export declare function CreateNotepadSnapshotRequestToJSON(json: any): CreateNotepadSnapshotRequest; export declare function CreateNotepadSnapshotRequestToJSONTyped(value?: CreateNotepadSnapshotRequest | null, ignoreDiscriminator?: boolean): any;