1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# OpenbaoClient::PkiRevokeRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **certificate** | **String** | Certificate to revoke in PEM format; must be signed by an issuer in this mount. | [optional] |
| **serial_number** | **String** | Certificate serial number, in colon- or hyphen-separated octal | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::PkiRevokeRequest.new(
certificate: null,
serial_number: null
)
```
|