1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# OpenbaoClient::AppRoleReadPoliciesResponse
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **policies** | **Array<String>** | Use \"token_policies\" instead. If this and \"token_policies\" are both specified, only \"token_policies\" will be used. | [optional] |
| **token_policies** | **Array<String>** | Comma-separated list of policies | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::AppRoleReadPoliciesResponse.new(
policies: null,
token_policies: null
)
```
|