You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/apify_client/_literals.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@
21
21
'LIMITED_PERMISSIONS',
22
22
'FULL_PERMISSIONS',
23
23
]
24
-
"""Determines permissions that the Actor requires to run. For more information, see the [Actor permissions documentation](https://docs.apify.com/platform/actors/development/permissions)."""
24
+
"""Determines the permission level that the Actor requires to run. For details, see [Actor permissions](https://docs.apify.com/platform/actors/development/permissions)."""
The identifier of the Actor. Use lowercase letters, numbers, and hyphens. Spaces or special characters aren't allowed. Must be unique across your account.
670
+
"""
671
+
description: Annotated[str|None, Field(examples=['This scraper extracts posts and comments from Instagram.'])] = (
672
+
None
673
+
)
674
+
"""
675
+
Short description of the Actor, displayed in Apify Store and Console.
Human-readable name of the Actor, displayed in Apify Store and Console. Can contain spaces and capital letters. Recommended length is 40-50 characters. You can change this title without affecting the Actor's URL or SEO.
Name of the Actor to display by search engines such as Google. Can be different from the Actor's name displayed in Apify Store and Console. Recommended length is 40-50 characters.
688
+
"""
689
+
seo_description: Annotated[str|None, Field(examples=['The best scraper for Instagram'])] =None
690
+
"""
691
+
Description of the Actor to display by search engines such as Google. Recommended length is 140-156 characters.
An array of `Version` objects. Each object represents a specific version of the Actor's source code: its location, builds, and environment configuration.
697
+
"""
651
698
pricing_infos: (
652
699
list[
653
700
Annotated[
@@ -660,11 +707,23 @@ class CreateActorRequest(BaseModel):
A list of categories that best define the Actor. Reflected in Apify Store's search and filtering options.
713
+
"""
664
714
default_run_options: DefaultRunOptions|None=None
665
715
actor_standby: ActorStandby|None=None
716
+
"""
717
+
The configuration of the Actor's standby mode. For details, see [Standby mode](https://docs.apify.com/platform/actors/development/programming-interface/standby).
718
+
"""
666
719
example_run_input: ExampleRunInput|None=None
720
+
"""
721
+
Sample input payload that demonstrates what a typical run input for an Actor looks like. Used when no explicit input for a run is provided.
722
+
"""
667
723
is_deprecated: bool|None=None
724
+
"""
725
+
Whether the Actor is deprecated.
726
+
"""
668
727
669
728
670
729
@docs_group('Models')
@@ -996,16 +1055,33 @@ class DecodeAndVerifyResponse(BaseModel):
996
1055
997
1056
@docs_group('Models')
998
1057
classDefaultRunOptions(BaseModel):
1058
+
"""The default settings applied to an Actor run. Can be overridden elsewhere."""
0 commit comments