Skip to content
Closed
Changes from all commits
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
4 changes: 2 additions & 2 deletions google/genai/_gaos/types/triggers/trigger.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class TriggerTypedDict(TypedDict):
display_name: NotRequired[str]
r"""Optional. The display name of the trigger."""
environment_id: NotRequired[str]
r"""Optional. The environment ID for the trigger execution."""
r"""Output only. The environment ID used for trigger execution."""
execution_timeout_seconds: NotRequired[int]
r"""Optional. The execution timeout for the triggered interaction."""
last_pause_time: NotRequired[datetime]
Expand Down Expand Up @@ -111,7 +111,7 @@ class Trigger(BaseModel):
r"""Optional. The display name of the trigger."""

environment_id: Optional[str] = None
r"""Optional. The environment ID for the trigger execution."""
r"""Output only. The environment ID used for trigger execution."""

execution_timeout_seconds: Optional[int] = None
r"""Optional. The execution timeout for the triggered interaction."""
Expand Down
Loading