UNPKG

fsm-sdk

Version:

Node.JS sdk to interface with SAP Field Service Management APIs.

11 lines (10 loc) 391 B
import { BatchAction } from './batch-action.model'; import { ClientConfig } from './client-config.model'; import { OauthTokenResponse } from './oauth-token-response.model'; export declare class BatchRequest { private _token; private _config; private _actions; constructor(_token: OauthTokenResponse, _config: ClientConfig, _actions: BatchAction[]); toString(): string; }