| 123456789101112131415161718192021222324 |
- <?php
- namespace NavOnlineInvoice;
- use Exception;
- class QueryInvoiceDataRequestXml extends BaseRequestXml {
- protected $rootName = "QueryInvoiceDataRequest";
- /**
- * QueryInvoiceDataRequestXml constructor.
- * @param $config
- * @param $invoiceNumberQuery
- * @throws \Exception
- */
- function __construct($config, $invoiceNumberQuery) {
- parent::__construct($config);
- XmlUtil::addChildArray($this->xml, "invoiceNumberQuery", $invoiceNumberQuery);
- }
- }
|