chargesUtil->getCharge($id); } #[Query] #[Module(\Modules::PRODUCTS_CHARGES)] public function charges( int $offset = 0, int $limit = 100, #[UseInputType('ChargeSortInput')] ?Parameters $sort = null, #[UseInputType('ChargeFilterInput')] ?Parameters $filter = null, ): ChargeCollection { return $this->chargesUtil->getChargeCollection($offset, $limit, $sort, $filter); } }