UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

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