Generated by DocFX

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 Source

AdditionalProperties

Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>