Class DepositScheme
Deposit scheme can split the amount to multiple accounts.
Inheritance
System.Object
DepositScheme
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.Dto
Assembly: VEDriversLite.dll
Syntax
public class DepositScheme
Properties
| Improve this Doc View SourceCurrency
Name of the currency
Declaration
public string Currency { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DepositAddresses
Dictionary of the addresses for the deposit of the received payment for some NFT If there are more then one the amount is splited based on the percentage in DepositAddress class
Declaration
public Dictionary<string, DepositAddress> DepositAddresses { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, DepositAddress> |
IsActive
Is the deposit scheme active
Declaration
public bool IsActive { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
MainDepositAddress
Main deposit address (if there is no others the payment goes there
Declaration
public string MainDepositAddress { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Name of the deposit scheme
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |