Class TokenExchangeResponse
Response to token exchange request.
Namespace: Unity.PlasticSCM.Editor.WebApi
Syntax
public class TokenExchangeResponse : object
Properties
AccessToken
The access token.
Declaration
public string AccessToken { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
Error
Error caused by the request.
Declaration
public ErrorResponse.ErrorFields Error { get; set; }
Property Value
| Type | Description |
|---|---|
| ErrorResponse.ErrorFields |
RefreshToken
The refresh token.
Declaration
public string RefreshToken { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
User
The user's username.
Declaration
public string User { get; set; }
Property Value
| Type | Description |
|---|---|
| String |