1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# OpenbaoClient::OidcWriteScopeRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **description** | **String** | The description of the scope | [optional] |
| **template** | **String** | The template string to use for the scope. This may be in string-ified JSON or base64 format. | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::OidcWriteScopeRequest.new(
description: null,
template: null
)
```
|