Class Recipients
public class Recipients
- Inheritance
-
Recipients
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Address
The recipient wallet address or ENS name
[JsonProperty("address", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Address { get; set; }
Property Value
Quantity
The amount to send. For native tokens and ERC20: amount in wei/smallest unit. For ERC721: should be '1'. For ERC1155: the number of tokens to transfer.
[JsonProperty("quantity", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Quantity { get; set; }