Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface ODataHttpOptions

    Options for HTTP-level OData operations.

    const opts: ODataHttpOptions = {
    timeout: 10_000,
    csrfToken: 'abc123',
    headers: { 'sap-client': '100' },
    };
    interface ODataHttpOptions {
        csrfToken?: string;
        headers?: Readonly<Record<string, string>>;
        timeout?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    csrfToken?: string

    CSRF token for write operations (POST/PATCH/DELETE).

    headers?: Readonly<Record<string, string>>

    Additional custom headers to include in the request.

    timeout?: number

    Timeout in ms for the HTTP request.