UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

47 lines (46 loc) 1.23 kB
import { ModelDefinition } from './BaseModels'; import { Customer } from './Customer'; import { Log } from './Log'; export interface AssetTagInterface { name: string; normalized: string; created?: Date; modified?: Date; deleted?: Date; id?: any; customerId?: any; customer?: Customer; trackingLogs?: Log[]; } export declare class AssetTag implements AssetTagInterface { name: string; normalized: string; created: Date; modified: Date; deleted: Date; id: any; customerId: any; customer?: Customer; trackingLogs?: Log[]; constructor(data?: AssetTagInterface); /** * The name of the model represented by this $resource, * i.e. `AssetTag`. */ static getModelName(): string; /** * @method factory * @author Jonathan Casarrubias * @license MIT * This method creates an instance of AssetTag for dynamic purposes. */ static factory(data: AssetTagInterface): AssetTag; /** * @method getModelDefinition * @author Julien Ledun * @license MIT * This method returns an object that represents some of the model * definitions. */ static getModelDefinition(): ModelDefinition; }