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/BlueprintWithFlowEntity.d.ts type IBlueprintWithFlowEntity = { id: string; title: string; description: string; tags: Array; includedTasks: Array; publishedAt: Date; deleted: boolean; template: BlueprintTemplate_default; flow: string; }; /** * @typedef {Object} IBlueprintWithFlowEntity * @property {String} id * @property {String} title * @property {String} description * @property {Array.} tags * @property {Array.} includedTasks * @property {Date} publishedAt * @property {Boolean} deleted * @property {BlueprintTemplate} template * @property {String} flow */ /** * The BlueprintWithFlowEntity model module. * @module model/BlueprintWithFlowEntity * @type {IBlueprintWithFlowEntity} */ declare class BlueprintWithFlowEntity { /** * 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, flow: any): void; /** * Constructs a BlueprintWithFlowEntity 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/BlueprintWithFlowEntity} obj Optional instance to populate. * @return {module:model/BlueprintWithFlowEntity} The populated BlueprintWithFlowEntity instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to BlueprintWithFlowEntity. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to BlueprintWithFlowEntity. */ static validateJSON(data: any): boolean; /** * Constructs a new BlueprintWithFlowEntity. * @alias module:model/BlueprintWithFlowEntity * @implements module:model/Blueprint * @param {String} title - * @param {Boolean} deleted - * @param {String} flow - */ constructor(title: string, deleted: boolean, flow: string); id: string; title: string; description: string; tags: string[]; includedTasks: string[]; publishedAt: Date; deleted: boolean; template: BlueprintTemplate_default; flow: string; } declare namespace BlueprintWithFlowEntity { let RequiredProperties: string[]; } //#endregion export { IBlueprintWithFlowEntity, BlueprintWithFlowEntity as default };