UpdateJWTProviderRequest constructor
UpdateJWTProviderRequest({})
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;
}