UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

59 lines (58 loc) 1.56 kB
import { ModelDefinition } from './BaseModels'; import { Log } from './Log'; import { Tool } from './Tool'; export interface ToolkitTemplateInterface { name?: string; description?: string; logo?: string; sector?: string; module: string; keywords?: Array<any>; created?: Date; modified?: Date; deleted?: Date; id?: any; adminToolIds?: Array<any>; toolIds?: Array<any>; trackingLogs?: Log[]; adminTools?: Tool[]; tools?: Tool[]; } export declare class ToolkitTemplate implements ToolkitTemplateInterface { name: string; description: string; logo: string; sector: string; module: string; keywords: Array<any>; created: Date; modified: Date; deleted: Date; id: any; adminToolIds: Array<any>; toolIds: Array<any>; trackingLogs?: Log[]; adminTools?: Tool[]; tools?: Tool[]; constructor(data?: ToolkitTemplateInterface); /** * The name of the model represented by this $resource, * i.e. `ToolkitTemplate`. */ static getModelName(): string; /** * @method factory * @author Jonathan Casarrubias * @license MIT * This method creates an instance of ToolkitTemplate for dynamic purposes. */ static factory(data: ToolkitTemplateInterface): ToolkitTemplate; /** * @method getModelDefinition * @author Julien Ledun * @license MIT * This method returns an object that represents some of the model * definitions. */ static getModelDefinition(): ModelDefinition; }