コード例 #1
0
ファイル: CreateOrderApiResponse.php プロジェクト: artad/SDK
 /**
  * @param $responseJSON
  */
 protected function processResponse($responseJSON)
 {
     parent::processResponse($responseJSON);
     if ($this->isSuccess()) {
         $this->orderNumber = trim($this->result['invoiceNumber']);
     }
 }
コード例 #2
0
 /**
  * @param $responseJSON
  */
 protected function processResponse($responseJSON)
 {
     parent::processResponse($responseJSON);
     if ($this->isSuccess()) {
         $this->PDF = base64_decode($this->result['invoicePDF']);
     }
 }
コード例 #3
0
 /**
  * @param $responseJSON
  */
 protected function processResponse($responseJSON)
 {
     parent::processResponse($responseJSON);
     if ($this->isSuccess()) {
         $this->orderArray = $this->result['order'];
     }
 }