Class Authorization
public class Authorization
- Inheritance
-
Authorization
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
From
The from address of the payment
[JsonProperty("from", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string From { get; set; }
Property Value
Nonce
The nonce of the payment
[JsonProperty("nonce", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Nonce { get; set; }
Property Value
To
The to address of the payment
[JsonProperty("to", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string To { get; set; }
Property Value
ValidAfter
The valid after timestamp of the payment
[JsonProperty("validAfter", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string ValidAfter { get; set; }
Property Value
ValidBefore
The valid before timestamp of the payment
[JsonProperty("validBefore", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string ValidBefore { get; set; }
Property Value
Value
The value of the payment
[JsonProperty("value", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Value { get; set; }