Files
YeePay/lib/Service/Frontcashier/Model/UpopActivescanQuerypayresultRequest.php

43 lines
643 B
PHP

<?php
namespace Yeepay\Yop\Sdk\Service\Frontcashier\Model;
class UpopActivescanQuerypayresultRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
{
/**
* @var
*/
private $body;
/**
* Gets body
*
* @return
*/
public function getBody()
{
return $this->body;
}
/**
* Sets body
*
* @param $body
* @return UpopActivescanQuerypayresultRequest
*/
public function setBody($body)
{
$this->body = $body;
return $this;
}
public static function getOperationId()
{
return 'upopActivescanQuerypayresult';
}
}