/** * Lists some or all merchant invoices. Filters the response by any specified optional query string parameters. * * @param array $params * @param ApiContext $apiContext is the APIContext for this call. It can be used to pass dynamic configuration and credentials. * @param PayPalRestCall $restCall is the Rest Call Service that is used to make rest calls * @return InvoiceSearchResponse */ public static function getAll($params = array(), $apiContext = null, $restCall = null) { ArgumentValidator::validate($params, 'params'); $allowedParams = array('page' => 1, 'page_size' => 1, 'total_count_required' => 1); $payLoad = ""; $json = self::executeCall("/v1/invoicing/invoices/?" . http_build_query(array_intersect_key($params, $allowedParams)), "GET", $payLoad, null, $apiContext, $restCall); $ret = new InvoiceSearchResponse(); $ret->fromJson($json); return $ret; }
/** * @depends testSerializationDeserialization * @param InvoiceSearchResponse $obj */ public function testGetters($obj) { $this->assertEquals($obj->getTotalCount(), 123); $this->assertEquals($obj->getInvoices(), InvoiceTest::getObject()); }