Class Response2
Successful authentication response. Returns wallet address plus authentication tokens.
public class Response2
- Inheritance
-
Response2
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
IsNewUser
Whether this is a newly created user/wallet
[JsonProperty("isNewUser", Required = Required.Always)]
public bool IsNewUser { get; set; }
Property Value
Token
JWT authentication token for API access
[JsonProperty("token", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Token { get; set; }
Property Value
Type
Type of authentication completed
[JsonProperty("type", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Type { get; set; }
Property Value
WalletAddress
The wallet address
[JsonProperty("walletAddress", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string WalletAddress { get; set; }