UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

72 lines (71 loc) 2.08 kB
import { ModelDefinition } from './BaseModels'; import { Customer } from './Customer'; import { EmergencyContact } from './EmergencyContact'; import { Log } from './Log'; export interface EmergencyContactCallHistoryInterface { name?: string; description?: string; sid: string; accountSid: string; request?: any; response?: any; created?: Date; modified?: Date; deleted?: Date; id?: any; customerId?: any; emergencyContactId?: any; relatedModelId?: string; relatedModelName?: string; trackingModelId?: string; trackingModelName?: string; customer?: Customer; emergencyContact?: EmergencyContact; relatedModel?: any; trackingModel?: any; trackingLogs?: Log[]; } export declare class EmergencyContactCallHistory implements EmergencyContactCallHistoryInterface { name: string; description: string; sid: string; accountSid: string; request: any; response: any; created: Date; modified: Date; deleted: Date; id: any; customerId: any; emergencyContactId: any; relatedModelId: string; relatedModelName: string; trackingModelId: string; trackingModelName: string; customer?: Customer; emergencyContact?: EmergencyContact; relatedModel?: any; trackingModel?: any; trackingLogs?: Log[]; constructor(data?: EmergencyContactCallHistoryInterface); /** * The name of the model represented by this $resource, * i.e. `EmergencyContactCallHistory`. */ static getModelName(): string; /** * @method factory * @author Jonathan Casarrubias * @license MIT * This method creates an instance of EmergencyContactCallHistory for dynamic purposes. */ static factory(data: EmergencyContactCallHistoryInterface): EmergencyContactCallHistory; /** * @method getModelDefinition * @author Julien Ledun * @license MIT * This method returns an object that represents some of the model * definitions. */ static getModelDefinition(): ModelDefinition; }