UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

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