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