mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
53 lines
1.6 KiB
C#
53 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Globalization;
|
|
|
|
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// Used to create a new authorization.
|
|
/// </summary>
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class AuthorizationUpdate
|
|
{
|
|
/// <summary>
|
|
/// Replaces the authorization scopes with this list.
|
|
/// </summary>
|
|
public IEnumerable<string> Scopes { get; set; }
|
|
|
|
/// <summary>
|
|
/// A list of scopes to add to this authorization.
|
|
/// </summary>
|
|
public IEnumerable<string> AddScopes { get; set; }
|
|
|
|
/// <summary>
|
|
/// A list of scopes to remove from this authorization.
|
|
/// </summary>
|
|
public IEnumerable<string> RemoveScopes { get; set; }
|
|
|
|
/// <summary>
|
|
/// An optional note to remind you what the OAuth token is for.
|
|
/// </summary>
|
|
public string Note { get; set; }
|
|
|
|
/// <summary>
|
|
/// An optional URL to remind you what app the OAuth token is for.
|
|
/// </summary>
|
|
public string NoteUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optional parameter that allows an OAuth application to create multiple authorizations for a single user
|
|
/// </summary>
|
|
public string Fingerprint { get; set; }
|
|
|
|
internal string DebuggerDisplay
|
|
{
|
|
get
|
|
{
|
|
var scopes = Scopes ?? new List<string>();
|
|
return string.Format(CultureInfo.InvariantCulture, "Scopes: {0} ", string.Join(",", scopes));
|
|
}
|
|
}
|
|
}
|
|
} |