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

    Interface ODataHttpResult<TData>

    Result of an OData HTTP operation.

    const result: ODataHttpResult<Product> = {
    status: 200,
    data: { Name: 'Widget', Price: 42 },
    etag: 'W/"abc123"',
    };
    interface ODataHttpResult<TData = unknown> {
        data: TData;
        etag?: string;
        status: number;
    }

    Type Parameters

    • TData = unknown
    Index

    Properties

    Properties

    data: TData

    Parsed response data.

    etag?: string

    ETag header value, if present.

    status: number

    HTTP status code of the response.