/** * 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 NotepadSnapshot */ export interface NotepadSnapshot { /** * * @type {string} * @memberof NotepadSnapshot */ 'id': string; /** * * @type {number} * @memberof NotepadSnapshot */ 'snapshotNumber': number; /** * * @type {string} * @memberof NotepadSnapshot */ 'label': string | null; /** * * @type {string} * @memberof NotepadSnapshot */ 'createdAt': string; /** * * @type {string} * @memberof NotepadSnapshot */ 'createdByUserId': string | null; } /** * Check if a given object implements the NotepadSnapshot interface. */ export declare function instanceOfNotepadSnapshot(value: object): value is NotepadSnapshot; export declare function NotepadSnapshotFromJSON(json: any): NotepadSnapshot; export declare function NotepadSnapshotFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotepadSnapshot; export declare function NotepadSnapshotToJSON(json: any): NotepadSnapshot; export declare function NotepadSnapshotToJSONTyped(value?: NotepadSnapshot | null, ignoreDiscriminator?: boolean): any;