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