Table of Contents

Class Authorization

Namespace
Thirdweb.Api
Assembly
Thirdweb.dll
public class Authorization
Inheritance
Authorization
Inherited Members

Properties

AdditionalProperties

[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }

Property Value

IDictionary<string, object>

From

The from address of the payment

[JsonProperty("from", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string From { get; set; }

Property Value

string

Nonce

The nonce of the payment

[JsonProperty("nonce", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Nonce { get; set; }

Property Value

string

To

The to address of the payment

[JsonProperty("to", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string To { get; set; }

Property Value

string

ValidAfter

The valid after timestamp of the payment

[JsonProperty("validAfter", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string ValidAfter { get; set; }

Property Value

string

ValidBefore

The valid before timestamp of the payment

[JsonProperty("validBefore", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string ValidBefore { get; set; }

Property Value

string

Value

The value of the payment

[JsonProperty("value", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Value { get; set; }

Property Value

string