1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# OpenbaoClient::OidcWriteAssignmentRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **entity_ids** | **Array<String>** | Comma separated string or array of identity entity IDs | [optional] |
| **group_ids** | **Array<String>** | Comma separated string or array of identity group IDs | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::OidcWriteAssignmentRequest.new(
entity_ids: null,
group_ids: null
)
```
|