HttpRequest

May 27, 2025 ยท View on GitHub

Class for creating and managing HTTP Requests.

Methods

NameDescriptionReturn Type
getHttpMethod()HttpMethod for the http request.HttpMethod
getHeaders()Headers for the http request.Headers
getQueryUrl()Query url for the http request.String
getParameters()Parameters for the http request.List<SimpleEntry<String, Object>>
getQueryParameters()Query parameters for the http request.Map<String, Object>
addQueryParameter(String key, Object value)Add Query parameter in http request.void