Input$SmsIntegrationInput constructor

Input$SmsIntegrationInput({
  1. Enum$SmsGatewayEnum? gateway,
  2. Input$SmsIntegrationAccessInput? access,
  3. List<Input$SmsIntegrationActionInput>? actions,
  4. Input$TargetACIInput? target,
})

Implementation

factory Input$SmsIntegrationInput({
  Enum$SmsGatewayEnum? gateway,
  Input$SmsIntegrationAccessInput? access,
  List<Input$SmsIntegrationActionInput>? actions,
  Input$TargetACIInput? target,
}) =>
    Input$SmsIntegrationInput._({
      if (gateway != null) r'gateway': gateway,
      if (access != null) r'access': access,
      if (actions != null) r'actions': actions,
      if (target != null) r'target': target,
    });