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,
  $11.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;
}