/** * 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. */ import { ClickLinkUser } from './'; /** * * @export * @interface ClickGalleryLink */ export interface ClickGalleryLink { /** * * @type {number} * @memberof ClickGalleryLink */ id?: number | null; /** * * @type {string} * @memberof ClickGalleryLink */ email?: string | null; /** * * @type {Date} * @memberof ClickGalleryLink */ expiresAt?: Date | null; /** * * @type {number} * @memberof ClickGalleryLink */ galleryId: number; /** * * @type {boolean} * @memberof ClickGalleryLink */ notifyOnUse: boolean; /** * * @type {number} * @memberof ClickGalleryLink */ viewsLeft?: number | null; /** * * @type {ClickLinkUser} * @memberof ClickGalleryLink */ elementsUser?: ClickLinkUser; /** * * @type {string} * @memberof ClickGalleryLink */ secretKey?: string | null; } export declare function ClickGalleryLinkFromJSON(json: any): ClickGalleryLink; export declare function ClickGalleryLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClickGalleryLink; export declare function ClickGalleryLinkToJSON(value?: ClickGalleryLink | null): any;