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