//#region src/model/AppsControllerApiApp.d.ts type IAppsControllerApiApp = { uid: string; id: string; name: string; type: string; namespace: string; flowId: string; tags: Array; enabled: boolean; created: Date; updated: Date; }; /** * @typedef {Object} IAppsControllerApiApp * @property {String} uid * @property {String} id * @property {String} name * @property {String} type * @property {String} namespace * @property {String} flowId * @property {Array.} tags * @property {Boolean} enabled * @property {Date} created * @property {Date} updated */ /** * The AppsControllerApiApp model module. * @module model/AppsControllerApiApp * @type {IAppsControllerApiApp} */ declare class AppsControllerApiApp { /** * 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): void; /** * Constructs a AppsControllerApiApp 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/AppsControllerApiApp} obj Optional instance to populate. * @return {module:model/AppsControllerApiApp} The populated AppsControllerApiApp instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to AppsControllerApiApp. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to AppsControllerApiApp. */ static validateJSON(data: any): boolean; uid: string; id: string; name: string; type: string; namespace: string; flowId: string; tags: string[]; enabled: boolean; created: Date; updated: Date; } //#endregion export { IAppsControllerApiApp, AppsControllerApiApp as default };