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 27
27
28
28
@docs_group ('Charging' )
29
29
class 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
+ """
31
40
32
41
async def charge (self , event_name : str , count : int = 1 ) -> ChargeResult :
33
42
"""Charge for a specified number of events - sub-operations of the Actor.
You can’t perform that action at this time.
0 commit comments