Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/apify/_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,14 @@ class Configuration(CrawleeConfiguration):
),
] = None

user_is_paying: Annotated[
str | None,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would you be so kind and make it parse into a bool?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now it should be parsed into a bool ;)

Field(
alias='apify_user_is_paying',
description='If set to "1", the user calling the Actor is paying user',
),
] = None

web_server_port: Annotated[
int,
Field(
Expand Down