Type of the request parameters to be passed to OpenApiRequestBuilder.

interface OpenApiRequestParameters {
    body?: any;
    pathParameters?: Record<string, any>;
    queryParameters?: Record<string, any>;
}

Properties

body?: any

Request body typically used with "create" and "update" operations (POST, PUT, PATCH).

pathParameters?: Record<string, any>

Collection of path parameters.

queryParameters?: Record<string, any>

Collection of query parameters.

Copyright Ⓒ 2024 SAP SE or an SAP affiliate company. All rights reserved.