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