SetTriggerActionsRequest constructor

SetTriggerActionsRequest({
  1. String? flowType,
  2. String? triggerType,
  3. Iterable<String>? actionIds,
})

Implementation

factory SetTriggerActionsRequest({
  $core.String? flowType,
  $core.String? 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;
}