Skip to content

Commit b705a7a

Browse files
docs: Add field descriptions to Actor models (#922)
- Updates the auto-generated Pydantic models and TypedDicts based on the proposed OpenAPI specification changes. - Based on apify-docs PR [#2745](apify/apify-docs#2745).
1 parent 32d8314 commit b705a7a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/apify_client/_models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class ActorDefinition(BaseModel):
206206
storages: Storages | None = None
207207
default_memory_mbytes: str | int | None = None
208208
"""
209-
Specifies the default amount of memory in megabytes to be used when the Actor is started. Can be an integer or a [dynamic memory expression](https://docs.apify.com/platform/actors/development/actor-definition/dynamic-actor-memory).
209+
Specifies the default amount of memory in megabytes to be used when the Actor is started. Can be an integer or a [dynamic memory expression](https://docs.apify.com/actors/development/actor-definition/dynamic-actor-memory).
210210
"""
211211
min_memory_mbytes: Annotated[int | None, Field(ge=128)] = None
212212
"""
@@ -875,7 +875,7 @@ class Dataset(BaseModel):
875875
),
876876
] = None
877877
"""
878-
Defines the schema of items in your dataset, the full specification can be found in [Apify docs](https://docs.apify.com/platform/actors/development/actor-definition/dataset-schema)
878+
Defines the schema of items in your dataset, the full specification can be found in [Apify docs](https://docs.apify.com/actors/development/actor-definition/dataset-schema)
879879
"""
880880
console_url: Annotated[AnyUrl, Field(examples=['https://console.apify.com/storage/datasets/27TmTznX9YPeAYhkC'])]
881881
items_public_url: Annotated[
@@ -3611,7 +3611,7 @@ class UpdateLimitsRequest(BaseModel):
36113611
"""
36123612
data_retention_days: Annotated[int | None, Field(examples=[90])] = None
36133613
"""
3614-
Apify securely stores your ten most recent Actor runs indefinitely, ensuring they are always accessible. Unnamed storages and other Actor runs are automatically deleted after the retention period. If you're subscribed, you can change it to keep data for longer or to limit your usage. [Lear more](https://docs.apify.com/platform/storage/usage#data-retention).
3614+
Apify securely stores your ten most recent Actor runs indefinitely, ensuring they are always accessible. Unnamed storages and other Actor runs are automatically deleted after the retention period. If you're subscribed, you can change it to keep data for longer or to limit your usage. [Lear more](https://docs.apify.com/storage#data-retention).
36153615
36163616
"""
36173617

0 commit comments

Comments
 (0)