43 lines
620 B
PHP
43 lines
620 B
PHP
<?php
|
|
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Settle\Model;
|
|
|
|
|
|
class SettleReceiptApplyV10Request extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
|
{
|
|
/**
|
|
* @var
|
|
*/
|
|
private $body;
|
|
|
|
/**
|
|
* Gets body
|
|
*
|
|
* @return
|
|
*/
|
|
public function getBody()
|
|
{
|
|
return $this->body;
|
|
}
|
|
|
|
/**
|
|
* Sets body
|
|
*
|
|
* @param $body
|
|
* @return SettleReceiptApplyV10Request
|
|
*/
|
|
public function setBody($body)
|
|
{
|
|
$this->body = $body;
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'settle_receipt_apply_v1_0';
|
|
}
|
|
|
|
|
|
}
|