import "../ApiClient-fBZ10h6n.mjs"; import "../DependsOn-GNgHPHR5.mjs"; import "../Type-DedIPHdh.mjs"; import "../InputObject-C6GD5E0Q.mjs"; import { t as BlueprintTemplate_default } from "../BlueprintTemplate-DCLsQIAM.mjs"; //#region src/model/Blueprint.d.ts type IBlueprint = { id: string; title: string; description: string; tags: Array; includedTasks: Array; publishedAt: Date; deleted: boolean; template: BlueprintTemplate_default; }; /** * @typedef {Object} IBlueprint * @property {String} id * @property {String} title * @property {String} description * @property {Array.} tags * @property {Array.} includedTasks * @property {Date} publishedAt * @property {Boolean} deleted * @property {BlueprintTemplate} template */ /** * The Blueprint model module. * @module model/Blueprint * @type {IBlueprint} */ declare class Blueprint { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, title: any, deleted: any): void; /** * Constructs a Blueprint from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/Blueprint} obj Optional instance to populate. * @return {module:model/Blueprint} The populated Blueprint instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to Blueprint. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to Blueprint. */ static validateJSON(data: any): boolean; /** * Constructs a new Blueprint. * @alias module:model/Blueprint * @param {String} title - * @param {Boolean} deleted - */ constructor(title: string, deleted: boolean); id: string; title: string; description: string; tags: string[]; includedTasks: string[]; publishedAt: Date; deleted: boolean; template: BlueprintTemplate_default; } declare namespace Blueprint { let RequiredProperties: string[]; } //#endregion export { IBlueprint, Blueprint as default };