first commit

This commit is contained in:
2024-04-01 09:54:43 +08:00
commit 899d816bc3
795 changed files with 130040 additions and 0 deletions

View 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';
}
}