ParamTypes
This enumeration defines the supported locations for parameters in an API request. It categorizes parameters into four distinct types: query, header, path, and cookie.
Attributes
| Attribute | Type | Description |
|---|---|---|
| query | string = query | Represents parameters passed in the URL query string of an HTTP request. |
| header | string = header | Represents parameters passed within the HTTP request headers. |
| path | string = path | Represents parameters embedded directly within the URL path structure. |
| cookie | string = cookie | Represents parameters passed via the HTTP Cookie header. |