1111 AsyncJournalAttachmentsService ,
1212 JournalAttachmentsService ,
1313)
14+ from mpt_api_client .resources .billing .journal_charges import (
15+ AsyncJournalChargesService ,
16+ JournalChargesService ,
17+ )
1418from mpt_api_client .resources .billing .journal_sellers import (
1519 AsyncJournalSellersService ,
1620 JournalSellersService ,
@@ -53,6 +57,12 @@ def sellers(self, journal_id: str) -> JournalSellersService:
5357 http_client = self .http_client , endpoint_params = {"journal_id" : journal_id }
5458 )
5559
60+ def charges (self , journal_id : str ) -> JournalChargesService :
61+ """Return journal charges service."""
62+ return JournalChargesService (
63+ http_client = self .http_client , endpoint_params = {"journal_id" : journal_id }
64+ )
65+
5666
5767class AsyncJournalsService (
5868 AsyncCreateMixin [Journal ],
@@ -76,3 +86,9 @@ def sellers(self, journal_id: str) -> AsyncJournalSellersService:
7686 return AsyncJournalSellersService (
7787 http_client = self .http_client , endpoint_params = {"journal_id" : journal_id }
7888 )
89+
90+ def charges (self , journal_id : str ) -> AsyncJournalChargesService :
91+ """Return journal charges service."""
92+ return AsyncJournalChargesService (
93+ http_client = self .http_client , endpoint_params = {"journal_id" : journal_id }
94+ )
0 commit comments