RequestDetails
This object is used to configure your resource request as described in Configure Resource Request:
| Attribute | |
|---|---|
| path | String | 
| method | HttpRequestMethod | 
| headers | Map<String, String>? | 
| body | String | 
The method can be set through the HttpRequestMethod enum:
enum HttpRequestMethod {
  get,
  post,
  put,
  delete,
}