first commit
This commit is contained in:
67
lib/Service/Yop/Model/Oauth2ReportKeyRequest.php
Normal file
67
lib/Service/Yop/Model/Oauth2ReportKeyRequest.php
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Yop\Model;
|
||||
|
||||
use Yeepay\Yop\Sdk\Model\BaseRequest;
|
||||
|
||||
class Oauth2ReportKeyRequest extends BaseRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $keyType;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $key;
|
||||
|
||||
/**
|
||||
* Gets keyType
|
||||
* @return string
|
||||
*/
|
||||
public function getKeyType()
|
||||
{
|
||||
return $this->keyType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets keyType
|
||||
* @param string $keyType
|
||||
* @return Oauth2ReportKeyRequest
|
||||
*/
|
||||
public function setKeyType($keyType)
|
||||
{
|
||||
$this->keyType = $keyType;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets key
|
||||
* @return string
|
||||
*/
|
||||
public function getKey()
|
||||
{
|
||||
return $this->key;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets key
|
||||
* @param string $key
|
||||
* @return Oauth2ReportKeyRequest
|
||||
*/
|
||||
public function setKey($key)
|
||||
{
|
||||
$this->key = $key;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'oauth2ReportKey';
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user