UpdateJWTProviderRequest constructor

UpdateJWTProviderRequest({
  1. String? id,
  2. String? name,
  3. String? issuer,
  4. String? jwtEndpoint,
  5. String? keysEndpoint,
  6. String? headerName,
  7. Options? providerOptions,
})

Implementation

factory UpdateJWTProviderRequest({
  $core.String? id,
  $core.String? name,
  $core.String? issuer,
  $core.String? jwtEndpoint,
  $core.String? keysEndpoint,
  $core.String? headerName,
  $6.Options? providerOptions,
}) {
  final result = create();
  if (id != null) result.id = id;
  if (name != null) result.name = name;
  if (issuer != null) result.issuer = issuer;
  if (jwtEndpoint != null) result.jwtEndpoint = jwtEndpoint;
  if (keysEndpoint != null) result.keysEndpoint = keysEndpoint;
  if (headerName != null) result.headerName = headerName;
  if (providerOptions != null) result.providerOptions = providerOptions;
  return result;
}