/** * Retool API * The Retool API is in beta. Go to Settings > API to get started. Once you generate an API token, use bearer token authentication to make requests. * * The version of the OpenAPI document: 2.4.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 { CustomComponentLibrariesLibraryIdRevisionsGet200ResponseDataInner } from './CustomComponentLibrariesLibraryIdRevisionsGet200ResponseDataInner'; /** * * @export * @interface CustomComponentLibrariesLibraryIdRevisionsGet200Response */ export interface CustomComponentLibrariesLibraryIdRevisionsGet200Response { /** * API request succeeded * @type {boolean} * @memberof CustomComponentLibrariesLibraryIdRevisionsGet200Response */ success: boolean; /** * An array of requested items * @type {Array} * @memberof CustomComponentLibrariesLibraryIdRevisionsGet200Response */ data: Array; /** * Total number of items in the response * @type {number} * @memberof CustomComponentLibrariesLibraryIdRevisionsGet200Response */ totalCount: number; /** * A token to retrieve the next page of items in the collection * @type {string} * @memberof CustomComponentLibrariesLibraryIdRevisionsGet200Response */ nextToken: string | null; /** * Whether there are more items in the collection * @type {boolean} * @memberof CustomComponentLibrariesLibraryIdRevisionsGet200Response */ hasMore: boolean; } /** * Check if a given object implements the CustomComponentLibrariesLibraryIdRevisionsGet200Response interface. */ export declare function instanceOfCustomComponentLibrariesLibraryIdRevisionsGet200Response(value: object): boolean; export declare function CustomComponentLibrariesLibraryIdRevisionsGet200ResponseFromJSON(json: any): CustomComponentLibrariesLibraryIdRevisionsGet200Response; export declare function CustomComponentLibrariesLibraryIdRevisionsGet200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomComponentLibrariesLibraryIdRevisionsGet200Response; export declare function CustomComponentLibrariesLibraryIdRevisionsGet200ResponseToJSON(value?: CustomComponentLibrariesLibraryIdRevisionsGet200Response | null): any;