/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.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 { ResourceLink } from './ResourceLink'; /** * * @export * @interface TemplateDto */ export interface TemplateDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof TemplateDto */ links: { [key: string]: ResourceLink; }; /** * The name of the template. * @type {string} * @memberof TemplateDto */ name: string; /** * The title of the template. * @type {string} * @memberof TemplateDto */ title: string; /** * The description of the template. * @type {string} * @memberof TemplateDto */ description: string; /** * True, if the template is a starter. * @type {boolean} * @memberof TemplateDto */ isStarter: boolean; } /** * Check if a given object implements the TemplateDto interface. */ export declare function instanceOfTemplateDto(value: any): value is TemplateDto; export declare function TemplateDtoFromJSON(json: any): TemplateDto; export declare function TemplateDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): TemplateDto; export declare function TemplateDtoToJSON(value?: TemplateDto | null, _ignoreDiscriminator?: boolean): any;