1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# OpenbaoClient::RadiusLoginRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **password** | **String** | Password for this user. | [optional] |
| **urlusername** | **String** | Username to be used for login. (URL parameter) | [optional] |
| **username** | **String** | Username to be used for login. (POST request body) | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::RadiusLoginRequest.new(
password: null,
urlusername: null,
username: null
)
```
|