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

    Interface CSRFTokenResult

    Result of a CSRF token fetch operation.

    const result: CSRFTokenResult = {
    token: 'abc123',
    serviceUrl: '/sap/opu/odata/sap/API_PRODUCT_SRV/',
    };
    interface CSRFTokenResult {
        serviceUrl: string;
        token: string;
    }
    Index

    Properties

    Properties

    serviceUrl: string

    The OData service URL from which the token was fetched.

    token: string

    The fetched CSRF token value.