Omnipay\Alipay\Requests\LegacyQueryRequest::getData PHP 메소드

getData() 공개 메소드

Get the raw data array for this message. The format of this varies from gateway to gateway, but will usually be either an associative array, or a SimpleXMLElement.
public getData ( ) : mixed
리턴 mixed
    public function getData()
    {
        $this->validateParams();
        $data = ['service' => $this->service, 'partner' => $this->getPartner(), 'trade_no' => $this->getTradeNo(), 'out_trade_no' => $this->getOutTradeNo(), '_input_charset' => $this->getInputCharset()];
        return $data;
    }