QueryInvoiceDataRequestXml.php 503 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace NavOnlineInvoice;
  3. use Exception;
  4. class QueryInvoiceDataRequestXml extends BaseRequestXml {
  5. protected $rootName = "QueryInvoiceDataRequest";
  6. /**
  7. * QueryInvoiceDataRequestXml constructor.
  8. * @param $config
  9. * @param $invoiceNumberQuery
  10. * @throws \Exception
  11. */
  12. function __construct($config, $invoiceNumberQuery) {
  13. parent::__construct($config);
  14. XmlUtil::addChildArray($this->xml, "invoiceNumberQuery", $invoiceNumberQuery);
  15. }
  16. }