File size: 910 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | using Unity.Plastic.Newtonsoft.Json;
using PlasticGui.WebApi.Responses;
namespace Unity.PlasticSCM.Editor.WebApi
{
/// <summary>
/// Response to token exchange request.
/// </summary>
public class TokenExchangeResponse
{
/// <summary>
/// Error caused by the request.
/// </summary>
[JsonProperty("error")]
public ErrorResponse.ErrorFields Error { get; set; }
/// <summary>
/// The user's username.
/// </summary>
[JsonProperty("user")]
public string User { get; set; }
/// <summary>
/// The access token.
/// </summary>
[JsonProperty("accessToken")]
public string AccessToken { get; set; }
/// <summary>
/// The refresh token.
/// </summary>
[JsonProperty("refreshToken")]
public string RefreshToken { get; set; }
}
}
|