new module:model/DSTransformationStep(config, expression, id, input, name, output, type)
- Source:
Constructs a new DSTransformationStep.
Parameters:
| Name | Type | Description |
|---|---|---|
config |
module:model/RecordToNever | |
expression |
Object | Reference of #/definitions/DSWorkflowTransformationExpression. Transformation Expression object. This object should be any of the following object models: [#/definitions/DSWorkflowReplaceExpression, #/definitions/DSWorkflowToLowerExpression, #/definitions/DSWorkflowToUpperExpression, #/components/schemas/DSWorkflowLastIndexOfExpression, #/components/schemas/DSWorkflowIndexOfExpression, #/components/schemas/DSWorkflowSubstringExpression, #/components/schemas/DSWorkflowConcatExpression] |
id |
String | |
input |
Object:.<String:, Object:> | A Record of strings to Strings, Variables, or Transformation Expressions |
name |
String | |
output |
Object:.<String:, Object:> | A Record of strings to Strings, Variables, or Transformation Expressions |
type |
module:model/DSWorkflowStepTypesDSTransformation |
Members
(inner) config :module:model/RecordToNever
- Source:
Type:
(inner) expression :Object
- Source:
Reference of #/definitions/DSWorkflowTransformationExpression. Transformation Expression object. This object should be any of the following object models: [#/definitions/DSWorkflowReplaceExpression, #/definitions/DSWorkflowToLowerExpression, #/definitions/DSWorkflowToUpperExpression, #/components/schemas/DSWorkflowLastIndexOfExpression, #/components/schemas/DSWorkflowIndexOfExpression, #/components/schemas/DSWorkflowSubstringExpression, #/components/schemas/DSWorkflowConcatExpression]
Type:
- Object
(inner) id :String
- Source:
Type:
- String
(inner) input :Object:.<String:, Object:>
- Source:
A Record of strings to Strings, Variables, or Transformation Expressions
Type:
(inner) name :String
- Source:
Type:
- String
(inner) output :Object:.<String:, Object:>
- Source:
A Record of strings to Strings, Variables, or Transformation Expressions
Type:
(inner) type :module:model/DSWorkflowStepTypesDSTransformation
- Source:
Type:
- module:model/DSWorkflowStepTypesDSTransformation
Methods
(static) constructFromObject(data, obj) → {module:model/DSTransformationStep}
- Source:
Constructs a DSTransformationStep from a plain JavaScript object, optionally creating a new instance.
Copies all relevant properties from data to obj if supplied or a new instance if not.
Parameters:
| Name | Type | Description |
|---|---|---|
data |
Object | The plain JavaScript object bearing properties of interest. |
obj |
module:model/DSTransformationStep | Optional instance to populate. |
Returns:
The populated DSTransformationStep instance.