/** * 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. */ import type { NotepadSnapshot } from './NotepadSnapshot'; /** * * @export * @interface ListNotepadSnapshots200Response */ export interface ListNotepadSnapshots200Response { /** * * @type {number} * @memberof ListNotepadSnapshots200Response */ 'count': number; /** * * @type {Array} * @memberof ListNotepadSnapshots200Response */ 'snapshots': Array; } /** * Check if a given object implements the ListNotepadSnapshots200Response interface. */ export declare function instanceOfListNotepadSnapshots200Response(value: object): value is ListNotepadSnapshots200Response; export declare function ListNotepadSnapshots200ResponseFromJSON(json: any): ListNotepadSnapshots200Response; export declare function ListNotepadSnapshots200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListNotepadSnapshots200Response; export declare function ListNotepadSnapshots200ResponseToJSON(json: any): ListNotepadSnapshots200Response; export declare function ListNotepadSnapshots200ResponseToJSONTyped(value?: ListNotepadSnapshots200Response | null, ignoreDiscriminator?: boolean): any;