Omnipay\WechatPay\Message\DownloadBillRequest::sendData PHP Метод

sendData() публичный Метод

Send the request with specified data
public sendData ( mixed $data ) : Omnipay\Common\Message\ResponseInterface
$data mixed The data to send
Результат Omnipay\Common\Message\ResponseInterface
    public function sendData($data)
    {
        $responseData = $this->post($this->endpoint, $data, 120);
        return $this->response = new DownloadBillResponse($this, $responseData);
    }