UpdateGitHubEnterpriseServerProviderRequest constructor
UpdateGitHubEnterpriseServerProviderRequest({})
Implementation
factory UpdateGitHubEnterpriseServerProviderRequest({
$core.String? id,
$core.String? name,
$core.String? clientId,
$core.String? clientSecret,
$core.String? authorizationEndpoint,
$core.String? tokenEndpoint,
$core.String? userEndpoint,
$core.Iterable<$core.String>? scopes,
$10.Options? providerOptions,
}) {
final $result = create();
if (id != null) {
$result.id = id;
}
if (name != null) {
$result.name = name;
}
if (clientId != null) {
$result.clientId = clientId;
}
if (clientSecret != null) {
$result.clientSecret = clientSecret;
}
if (authorizationEndpoint != null) {
$result.authorizationEndpoint = authorizationEndpoint;
}
if (tokenEndpoint != null) {
$result.tokenEndpoint = tokenEndpoint;
}
if (userEndpoint != null) {
$result.userEndpoint = userEndpoint;
}
if (scopes != null) {
$result.scopes.addAll(scopes);
}
if (providerOptions != null) {
$result.providerOptions = providerOptions;
}
return $result;
}