AppConnection_Gateway constructor

AppConnection_Gateway({
  1. AppConnection_Gateway_Type? type,
  2. String? uri,
  3. int? ingressPort,
  4. String? appGateway,
  5. String? l7psc,
})

Implementation

factory AppConnection_Gateway({
  AppConnection_Gateway_Type? type,
  $core.String? uri,
  $core.int? ingressPort,
  $core.String? appGateway,
  $core.String? l7psc,
}) {
  final $result = create();
  if (type != null) {
    $result.type = type;
  }
  if (uri != null) {
    $result.uri = uri;
  }
  if (ingressPort != null) {
    $result.ingressPort = ingressPort;
  }
  if (appGateway != null) {
    $result.appGateway = appGateway;
  }
  if (l7psc != null) {
    $result.l7psc = l7psc;
  }
  return $result;
}