Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit e8e76f9

Browse files
committed
change to string type to object to the desired type
1 parent 4df1b5b commit e8e76f9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dynamic_entities/your_dynamic_activity_dacx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
You must register the Activity with the [Worker](https://python.temporal.io/temporalio.worker.html) before it can be invoked.
1515
1616
The Activity function must then accept a single argument of type `Sequence[temporalio.common.RawValue]`.
17-
The [payload_converter()](https://python.temporal.io/temporalio.activity.html#payload_converter) function is used to convert a `RawValue` object to a string representation.
17+
The [payload_converter()](https://python.temporal.io/temporalio.activity.html#payload_converter) function is used to convert a `RawValue` object to the desired type.
1818
dacx"""
1919

2020

dynamic_entities/your_dynamic_query_dacx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
A Query can be made dynamic by adding `dynamic=True` to the `@query.defn` decorator.
1212
1313
The Query function must then accept a single argument of type `Sequence[temporalio.common.RawValue]`.
14-
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to a string representation.
14+
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to the desired type.
1515
dacx"""
1616

1717

dynamic_entities/your_dynamic_signal_dacx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
A Signal can be made dynamic by adding `dynamic=True` to the `@signal.defn` decorator.
1212
1313
The Signal function must then accept a single argument of type `Sequence[temporalio.common.RawValue]`.
14-
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to a string representation.
14+
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to the desired type.
1515
dacx"""
1616

1717

dynamic_entities/your_dynamic_workflow_dacx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
You must register the Workflow with the [Worker](https://python.temporal.io/temporalio.worker.html) before it can be invoked.
1515
1616
The Workflow function must then accept a single argument of type `Sequence[temporalio.common.RawValue]`.
17-
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to a string representation.
17+
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to the desired type.
1818
dacx"""
1919

2020

0 commit comments

Comments
 (0)