docs/PayorCreateApiKeyRequest.md in velopayments-2.23.78.beta1 vs docs/PayorCreateApiKeyRequest.md in velopayments-2.26.124.beta1
- old
+ new
@@ -1,21 +1,22 @@
# VeloPayments::PayorCreateApiKeyRequest
## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**name** | **String** | A name for the key. |
-**description** | **String** | Description of the key. | [optional]
-**roles** | **Array<String>** | A list of roles to assign to the key. |
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **name** | **String** | A name for the key. | |
+| **description** | **String** | Description of the key. | [optional] |
+| **roles** | **Array<String>** | A list of roles to assign to the key. | |
-## Code Sample
+## Example
```ruby
-require 'VeloPayments'
+require 'velopayments'
-instance = VeloPayments::PayorCreateApiKeyRequest.new(name: iOS Key,
- description: Key for iOS mobile application,
- roles: ["payor.admin"])
+instance = VeloPayments::PayorCreateApiKeyRequest.new(
+ name: iOS Key,
+ description: Key for iOS mobile application,
+ roles: ["payor.admin"]
+)
```
-