Table of Contents

Class LoginPayloadData

Namespace
Thirdweb
Assembly
Thirdweb.dll

Represents login payload data.

[Serializable]
public class LoginPayloadData
Inheritance
LoginPayloadData
Inherited Members

Constructors

LoginPayloadData()

Initializes a new instance of the LoginPayloadData class.

public LoginPayloadData()

Properties

Address

Gets or sets the address of the login payload.

[JsonProperty("address")]
public string Address { get; set; }

Property Value

string

ChainId

Gets or sets the chain ID of the login payload.

[JsonProperty("chain_id", NullValueHandling = NullValueHandling.Ignore)]
public string ChainId { get; set; }

Property Value

string

Domain

Gets or sets the domain of the login payload.

[JsonProperty("domain")]
public string Domain { get; set; }

Property Value

string

ExpirationTime

Gets or sets the expiration time of the login payload.

[JsonProperty("expiration_time", NullValueHandling = NullValueHandling.Ignore)]
public string ExpirationTime { get; set; }

Property Value

string

InvalidBefore

Gets or sets the invalid before timestamp of the login payload.

[JsonProperty("invalid_before", NullValueHandling = NullValueHandling.Ignore)]
public string InvalidBefore { get; set; }

Property Value

string

IssuedAt

Gets or sets the issued at timestamp of the login payload.

[JsonProperty("issued_at", NullValueHandling = NullValueHandling.Ignore)]
public string IssuedAt { get; set; }

Property Value

string

Nonce

Gets or sets the nonce of the login payload.

[JsonProperty("nonce", NullValueHandling = NullValueHandling.Ignore)]
public string Nonce { get; set; }

Property Value

string

Resources

Gets or sets the resources of the login payload.

[JsonProperty("resources", NullValueHandling = NullValueHandling.Ignore)]
public List<string> Resources { get; set; }

Property Value

List<string>

Statement

Gets or sets the statement of the login payload.

[JsonProperty("statement")]
public string Statement { get; set; }

Property Value

string

Uri

Gets or sets the URI of the login payload.

[JsonProperty("uri", NullValueHandling = NullValueHandling.Ignore)]
public string Uri { get; set; }

Property Value

string

Version

Gets or sets the version of the login payload.

[JsonProperty("version", NullValueHandling = NullValueHandling.Ignore)]
public string Version { get; set; }

Property Value

string