Input$EmailIntegrationServerInput constructor

Input$EmailIntegrationServerInput({
  1. bool? secure,
  2. int? port,
  3. String? host,
  4. Input$EmailIntegrationServerAuthInput? auth,
})

Implementation

factory Input$EmailIntegrationServerInput({
  bool? secure,
  int? port,
  String? host,
  Input$EmailIntegrationServerAuthInput? auth,
}) =>
    Input$EmailIntegrationServerInput._({
      if (secure != null) r'secure': secure,
      if (port != null) r'port': port,
      if (host != null) r'host': host,
      if (auth != null) r'auth': auth,
    });