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 SourceAdditionalProperties
Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Amount
Number of tokens to issue
Declaration
[JsonProperty("amount", Required = Required.Always)]
public double Amount { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
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 |
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 |
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 |
IssueAddress
Address issuing the token
Declaration
[JsonProperty("issueAddress", Required = Required.Always)]
public string IssueAddress { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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 |
Reissuable
whether the token should be reissuable
Declaration
[JsonProperty("reissuable", Required = Required.Always)]
public bool Reissuable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Transfer
Declaration
[JsonProperty("transfer", Required = Required.Always)]
public ICollection<Transfer> Transfer { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<Transfer> |