# VeloPayments::PayorCreateApiKeyRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **name** | **String** | A name for the key. | | | **description** | **String** | Description of the key. | [optional] | | **roles** | **Array<String>** | <p>A role to assign to the key.</p> <p>If you want your API key to have write access then assign the role velo.payor.admin</p> <p>A later version will change this property from a list to string</p> | | ## Example ```ruby require 'velopayments' instance = VeloPayments::PayorCreateApiKeyRequest.new( name: SAP Key 01, description: An API Key for the SAP Application, roles: ["payor.admin"] ) ```