Files
YeePay/lib/Service/Account/Model/AccountManageBankAccountOpenRequest.php

43 lines
638 B
PHP

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