Interface BatchRequestOptions<T>

interface BatchRequestOptions<T> {
    collection: string;
    entity?: Partial<T>;
    id?: any;
    method?: HTTPMethod;
    params?: SystemQueryOptions<any>;
    withContentLength?: boolean;
}

Type Parameters

  • T

Properties

collection: string

Collection Name

entity?: Partial<T>

OData Entity Object

id?: any

OData Entity ObjectID

method?: HTTPMethod
params?: SystemQueryOptions<any>

OData system query options

withContentLength?: boolean

SAP OData need Content-Length but standard reject it