/** * 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. */ /** * Custom Component Library Revision * @export * @interface CustomComponentLibraryRevision */ export interface CustomComponentLibraryRevision { /** * * @type {string} * @memberof CustomComponentLibraryRevision */ id: string; /** * * @type {string} * @memberof CustomComponentLibraryRevision */ version: string; /** * * @type {string} * @memberof CustomComponentLibraryRevision */ customComponentLibraryId: string; /** * * @type {Date} * @memberof CustomComponentLibraryRevision */ createdAt: Date; /** * * @type {Date} * @memberof CustomComponentLibraryRevision */ updatedAt: Date; } /** * Check if a given object implements the CustomComponentLibraryRevision interface. */ export declare function instanceOfCustomComponentLibraryRevision(value: object): boolean; export declare function CustomComponentLibraryRevisionFromJSON(json: any): CustomComponentLibraryRevision; export declare function CustomComponentLibraryRevisionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomComponentLibraryRevision; export declare function CustomComponentLibraryRevisionToJSON(value?: CustomComponentLibraryRevision | null): any;