UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

24 lines (19 loc) 659 B
import { SDKModels } from './SDKModels'; import { XompassBaseApi, XompassAuth } from '../core'; import { XompassClient } from '../../XompassClient'; import { LoopBackFilter } from '../../models'; import { DeviceEventComment } from '../../models'; import { Log } from '../../models'; /** * Api services for the `DeviceEventComment` model. */ export abstract class DeviceEventCommentApi extends XompassBaseApi { public static model = SDKModels.get('DeviceEventComment'); /** * The name of the model represented by this $resource, * i.e. `DeviceEventComment`. */ public static getModelName(): string { return 'DeviceEventComment'; } }