UNPKG

fsm-sdk

Version:

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

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