UpdateGitHubEnterpriseServerProviderRequest constructor

UpdateGitHubEnterpriseServerProviderRequest({
  1. String? id,
  2. String? name,
  3. String? clientId,
  4. String? clientSecret,
  5. String? authorizationEndpoint,
  6. String? tokenEndpoint,
  7. String? userEndpoint,
  8. Iterable<String>? scopes,
  9. Options? providerOptions,
})

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