1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# OpenbaoClient::CorsConfigureRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **allowed_headers** | **Array<String>** | A comma-separated string or array of strings indicating headers that are allowed on cross-origin requests. | [optional] |
| **allowed_origins** | **Array<String>** | A comma-separated string or array of strings indicating origins that may make cross-origin requests. | [optional] |
| **enable** | **Boolean** | Enables or disables CORS headers on requests. | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::CorsConfigureRequest.new(
allowed_headers: null,
allowed_origins: null,
enable: null
)
```
|