Generated by DocFX

Class IssueTokenRequest

Inheritance
System.Object
IssueTokenRequest
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 IssueTokenRequest

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

Amount

Number of tokens to issue

Declaration
[JsonProperty("amount", Required = Required.Always)]
public double Amount { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

Divisibility

Number of decimal places the token should be divisble by (0-7)

Declaration
[JsonProperty("divisibility", Required = Required.Always)]
public double Divisibility { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

Fee

Fee in satoshi to include in the issuance transaction min 1000000000 (10 NEBL)

Declaration
[JsonProperty("fee", Required = Required.Always)]
public double Fee { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

Flags

Object representing flags that potentialy modify this transaction

Declaration
[JsonProperty("flags", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public Flags Flags { get; set; }
Property Value
Type Description
Flags
| Improve this Doc View Source

IssueAddress

Address issuing the token

Declaration
[JsonProperty("issueAddress", Required = Required.Always)]
public string IssueAddress { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Metadata

Object representing all metadata at token issuance

Declaration
[JsonProperty("metadata", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public Metadata Metadata { get; set; }
Property Value
Type Description
Metadata
| Improve this Doc View Source

Reissuable

whether the token should be reissuable

Declaration
[JsonProperty("reissuable", Required = Required.Always)]
public bool Reissuable { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Transfer

Declaration
[JsonProperty("transfer", Required = Required.Always)]
public ICollection<Transfer> Transfer { get; set; }
Property Value
Type Description
System.Collections.Generic.ICollection<Transfer>