/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 ClickGallery */ export interface ClickGallery { /** * * @type {number} * @memberof ClickGallery */ id: number; /** * * @type {string} * @memberof ClickGallery */ name: string; /** * * @type {string} * @memberof ClickGallery */ description?: string | null; /** * * @type {string} * @memberof ClickGallery */ readonly presignedLoginUrl: string; } export declare function ClickGalleryFromJSON(json: any): ClickGallery; export declare function ClickGalleryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClickGallery; export declare function ClickGalleryToJSON(value?: ClickGallery | null): any;