File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 2727
2828@docs_group ('Charging' )
2929class ChargingManager (Protocol ):
30- """Provides fine-grained access to pay-per-event functionality."""
30+ """Provides fine-grained access to pay-per-event functionality.
31+
32+ The ChargingManager allows you to charge for specific events in your Actor when using
33+ the pay-per-event pricing model. This enables precise cost control and transparent
34+ billing for different operations within your Actor.
35+
36+ ### References
37+
38+ - Apify platform documentation: https://docs.apify.com/platform/actors/publishing/monetize
39+ """
3140
3241 async def charge (self , event_name : str , count : int = 1 ) -> ChargeResult :
3342 """Charge for a specified number of events - sub-operations of the Actor.
You can’t perform that action at this time.
0 commit comments