UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

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