client); } /** * Get the collection object that is used by this API endpoint. Every API * endpoint uses one type of collection object. * * @param int $count * @param \stdClass $_links * * @return OrderLineCollection */ protected function getResourceCollectionObject($count, $_links) { return new OrderLineCollection($count, $_links); } /** * Cancel lines for the provided order. * The data array must contain a lines array. * You can pass an empty lines array if you want to cancel all eligible lines. * Returns null if successful. * * @param Order $order * @param array $data * * @return null * @throws ApiException */ public function cancelFor(Order $order, array $data) { return $this->cancelForId($order->id, $data); } /** * Cancel lines for the provided order id. * The data array must contain a lines array. * You can pass an empty lines array if you want to cancel all eligible lines. * Returns null if successful. * * @param string $orderId * @param array $data * * @return null * @throws ApiException */ public function cancelForId($orderId, array $data) { if(! isset($data, $data['lines']) || ! is_array($data['lines'])) { throw new ApiException("A lines array is required."); } $this->parentId = $orderId; $this->client->performHttpCall( self::REST_DELETE, "{$this->getResourcePath()}", $this->parseRequestBody($data) ); return null; } }