UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

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