PO/Library/PackageCache/com.unity.collab-proxy@1.9.0/Editor/PlasticSCM/WebApi/TokenExchangeResponse.cs

21 lines
514 B
C#
Raw Normal View History

using Unity.Plastic.Newtonsoft.Json;
using PlasticGui.WebApi.Responses;
namespace Unity.PlasticSCM.Editor.WebApi
{
public class TokenExchangeResponse
{
[JsonProperty("error")]
public ErrorResponse.ErrorFields Error { get; set; }
[JsonProperty("user")]
public string User { get; set; }
[JsonProperty("accessToken")]
public string AccessToken { get; set; }
[JsonProperty("refreshToken")]
public string RefreshToken { get; set; }
}
}