# OpenapiClient::IssuerResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **code** | **String** | The verification response code, as sent by the verification system. | **status** | **String** | The interpretation of the response code. Valid values are \"approved\" - The verification was conducted and is approved. \"declined\" - The verification was conducted and is not approved. \"disabled\" - The verification was not conducted because it was not requested or disabled in the verification. \"unknown\" - The verification was attempted but it failed due to some system error (e.g. timeout). | [optional] **scheme** | **String** | An identifier of the system/specification from which the code was received, and how the status was derived. | ## Code Sample ```ruby require 'OpenapiClient' instance = OpenapiClient::IssuerResponse.new(code: 100, status: approved, scheme: visa) ```