QueryInvoiceChainDigestRequestXml.php 519 B

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