We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
APIFY_USER_IS_PAYING
ApifyEnvVars
1 parent 9f577bb commit 411c7f1Copy full SHA for 411c7f1
src/apify_shared/consts.py
@@ -171,6 +171,8 @@ class ApifyEnvVars(str, Enum):
171
TOKEN = 'APIFY_TOKEN'
172
#: USER_ID
173
USER_ID = 'APIFY_USER_ID'
174
+ #: USER_IS_PAYING
175
+ USER_IS_PAYING = 'APIFY_USER_IS_PAYING'
176
#: WORKFLOW_KEY
177
WORKFLOW_KEY = 'APIFY_WORKFLOW_KEY'
178
@@ -307,6 +309,7 @@ class MetaOrigin(str, Enum):
307
309
ApifyEnvVars.IS_AT_HOME,
308
310
ApifyEnvVars.PERSIST_STORAGE,
311
ApifyEnvVars.PURGE_ON_START,
312
+ ApifyEnvVars.USER_IS_PAYING,
313
]
314
315
BOOL_ENV_VARS: list[BOOL_ENV_VARS_TYPE] = list(get_args(BOOL_ENV_VARS_TYPE))
0 commit comments