Class SendTokenRequest
Inheritance
System.Object
SendTokenRequest
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 SendTokenRequest
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> |
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 |
Flags
Object representing flags that potentialy modify this transaction
Declaration
[JsonProperty("flags", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public Flags2 Flags { get; set; }
Property Value
Type | Description |
---|---|
Flags2 |
From
Array of addresses to send the token from
Declaration
[JsonProperty("from", Required = Required.AllowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<string> From { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<System.String> |
Metadata
Object representing all metadata at token issuance
Declaration
[JsonProperty("metadata", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public Metadata2 Metadata { get; set; }
Property Value
Type | Description |
---|---|
Metadata2 |
Sendutxo
Array of UTXOs to send the token from
Declaration
[JsonProperty("sendutxo", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<string> Sendutxo { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<System.String> |
To
Declaration
[JsonProperty("to", Required = Required.Always)]
public ICollection<To> To { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<To> |