/** * 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 CreateNotepadSnapshot201Response */ export interface CreateNotepadSnapshot201Response { /** * * @type {string} * @memberof CreateNotepadSnapshot201Response */ 'id': string; /** * * @type {number} * @memberof CreateNotepadSnapshot201Response */ 'snapshotNumber': number; /** * * @type {string} * @memberof CreateNotepadSnapshot201Response */ 'label': string | null; /** * * @type {string} * @memberof CreateNotepadSnapshot201Response */ 'createdAt': string; } /** * Check if a given object implements the CreateNotepadSnapshot201Response interface. */ export declare function instanceOfCreateNotepadSnapshot201Response(value: object): value is CreateNotepadSnapshot201Response; export declare function CreateNotepadSnapshot201ResponseFromJSON(json: any): CreateNotepadSnapshot201Response; export declare function CreateNotepadSnapshot201ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateNotepadSnapshot201Response; export declare function CreateNotepadSnapshot201ResponseToJSON(json: any): CreateNotepadSnapshot201Response; export declare function CreateNotepadSnapshot201ResponseToJSONTyped(value?: CreateNotepadSnapshot201Response | null, ignoreDiscriminator?: boolean): any;