Class BurnTokenRequest
Inheritance
System.Object
BurnTokenRequest
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VEDriversLite.NeblioAPI
Assembly: VEDriversLite.NeblioAPI.dll
Syntax
public class BurnTokenRequest
Properties
| Improve this Doc View SourceAdditionalProperties
Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Burn
Array of objects representing tokens to be burned
Declaration
[JsonProperty("burn", Required = Required.Always)]
public ICollection<Burn> Burn { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<Burn> |
Fee
Fee in satoshi to include in the issuance transaction min 10000 (0.0001 NEBL)
Declaration
[JsonProperty("fee", Required = Required.Always)]
public double Fee { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
From
Array of addresses to send the token from
Declaration
[JsonProperty("from", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<string> From { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<System.String> |
Transfer
Declaration
[JsonProperty("transfer", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<Transfer2> Transfer { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<Transfer2> |