1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# OpenbaoClient::TokenRenewAccessorRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **accessor** | **String** | Accessor of the token to renew (request body) | [optional] |
| **increment** | **Integer** | The desired increment in seconds to the token expiration | [optional][default to 0] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::TokenRenewAccessorRequest.new(
accessor: null,
increment: null
)
```
|