/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 { PublicWorkspace } from './PublicWorkspace'; /** * * @export * @interface PublicQrcodeTemplate */ export interface PublicQrcodeTemplate { /** * * @type {boolean} * @memberof PublicQrcodeTemplate */ builtIn?: boolean; /** * * @type {string} * @memberof PublicQrcodeTemplate */ description?: string; /** * Frequently Asked Questions about this template stored as JSON * @type {string} * @memberof PublicQrcodeTemplate */ faq?: string; /** * Extended markdown-supported content providing detailed information about the template * @type {string} * @memberof PublicQrcodeTemplate */ learnMore?: string; /** * * @type {string} * @memberof PublicQrcodeTemplate */ name?: string; /** * * @type {Date} * @memberof PublicQrcodeTemplate */ publishedAt?: Date; /** * * @type {string} * @memberof PublicQrcodeTemplate */ slug?: string; /** * * @type {string} * @memberof PublicQrcodeTemplate */ tags?: string; /** * * @type {string} * @memberof PublicQrcodeTemplate */ thumbnailSignedUrl?: string; /** * Public information about the workspace that created this template. Empty for built-in templates. Only included when 'workspace' is specified in the include parameter. * @type {PublicWorkspace} * @memberof PublicQrcodeTemplate */ workspace?: PublicWorkspace; } /** * Check if a given object implements the PublicQrcodeTemplate interface. */ export declare function instanceOfPublicQrcodeTemplate(value: object): value is PublicQrcodeTemplate; export declare function PublicQrcodeTemplateFromJSON(json: any): PublicQrcodeTemplate; export declare function PublicQrcodeTemplateFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicQrcodeTemplate; export declare function PublicQrcodeTemplateToJSON(json: any): PublicQrcodeTemplate; export declare function PublicQrcodeTemplateToJSONTyped(value?: PublicQrcodeTemplate | null, ignoreDiscriminator?: boolean): any;