SetTriggerActionsRequest constructor
SetTriggerActionsRequest({
- FlowType? flowType,
- TriggerType? triggerType,
- Iterable<
String> ? actionIds,
Implementation
factory SetTriggerActionsRequest({
FlowType? flowType,
TriggerType? triggerType,
$core.Iterable<$core.String>? actionIds,
}) {
final $result = create();
if (flowType != null) {
$result.flowType = flowType;
}
if (triggerType != null) {
$result.triggerType = triggerType;
}
if (actionIds != null) {
$result.actionIds.addAll(actionIds);
}
return $result;
}