ScriptActivityParameter Class
Parameters of a script block.
Constructor
ScriptActivityParameter(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
name
|
The name of the parameter. Type: string (or Expression with resultType string). |
|
type
|
The type of the parameter. Known values are: "Boolean", "DateTime", "DateTimeOffset", "Decimal", "Double", "Guid", "Int16", "Int32", "Int64", "Single", "String", and "Timespan". |
|
value
|
The value of the parameter. Type: string (or Expression with resultType string). |
|
direction
|
The direction of the parameter. Known values are: "Input", "Output", and "InputOutput". |
|
size
|
The size of the output direction parameter. |
Attributes
direction
"Input", "Output", and "InputOutput".
direction: str | _models.ScriptActivityParameterDirection | None
name
string (or Expression with resultType string).
name: Any | None
size
The size of the output direction parameter.
size: int | None
type
"Boolean", "DateTime", "DateTimeOffset", "Decimal", "Double", "Guid", "Int16", "Int32", "Int64", "Single", "String", and "Timespan".
type: str | _models.ScriptActivityParameterType | None
value
string (or Expression with resultType string).
value: Any | None