UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

17 lines (16 loc) 621 B
import { XompassBaseApi } from '../core'; import { LoopBackFilter } from '../../models'; /** * Api services for the `Keyword` model. */ export declare abstract class KeywordApi extends XompassBaseApi { static model: any; static findByIdTrackingLogs(id: any, fk: any, retry?: boolean): Promise<any>; static getTrackingLogs(id: any, filter?: LoopBackFilter, retry?: boolean): Promise<any>; static countTrackingLogs(id: any, where?: any, retry?: boolean): Promise<any>; /** * The name of the model represented by this $resource, * i.e. `Keyword`. */ static getModelName(): string; }