Class InvoiceNFT
Invoice NFT is based on NFT Order and NFT Product
Implements
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.NFT
Assembly: VEDriversLite.dll
Syntax
public class InvoiceNFT : CommonNFT, INFT
Constructors
| Improve this Doc View SourceInvoiceNFT(String)
Create empty NFT class
Declaration
public InvoiceNFT(string utxo)
Parameters
Type | Name | Description |
---|---|---|
System.String | utxo |
Fields
| Improve this Doc View SourceAlreadyPaid
Flag for already paid invoices
Declaration
public bool AlreadyPaid
Field Value
Type | Description |
---|---|
System.Boolean |
Properties
| Improve this Doc View SourceBuyerProfileNFT
Buyer profile NFT hahs
Declaration
public string BuyerProfileNFT { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ExposeDate
Date when invoice has been created
Declaration
public DateTime ExposeDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
FileLink
Related file link - for example some attachenment on IPFS
Declaration
public string FileLink { get; set; }
Property Value
Type | Description |
---|---|
System.String |
InvoiceItems
List of the invoice items - ivoice lines
Declaration
public List<InvoiceItem> InvoiceItems { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<InvoiceItem> |
MaxCountOfDaysAfterPaymentDate
Maximum count of days after the peyment should be paid
Declaration
public int MaxCountOfDaysAfterPaymentDate { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
MaxCountOfDaysFromExposeToPayment
Maximum pay term - how long can the buyer pay the invoice
Declaration
public int MaxCountOfDaysFromExposeToPayment { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
OrderTxId
Hash of the Order NFT
Declaration
public string OrderTxId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OriginalPaymentTxId
Hash of the original payment
Declaration
public string OriginalPaymentTxId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SellerProfileNFT
Seller profile NFT hash
Declaration
public string SellerProfileNFT { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TotalPrice
Total price of the invoice
Declaration
public double TotalPrice { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
| Improve this Doc View SourceAddInvoiceItem(String, Int32, Double, Int32)
Declaration
public void AddInvoiceItem(string utxo, int index, double price, int amount)
Parameters
Type | Name | Description |
---|---|---|
System.String | utxo | |
System.Int32 | index | |
System.Double | price | |
System.Int32 | amount |
Fill(INFT)
Fill basic parameters
Declaration
public override async Task Fill(INFT NFT)
Parameters
Type | Name | Description |
---|---|---|
INFT | NFT |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task |
Overrides
| Improve this Doc View SourceGetMetadata(String, String, String)
Get the NFT data for the NFT
Declaration
public override async Task<IDictionary<string, string>> GetMetadata(string address = "", string key = "", string receiver = "")
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address of the sender |
System.String | key | Private key of the sender for encryption |
System.String | receiver | receiver of the NFT |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Collections.Generic.IDictionary<System.String, System.String>> |
Overrides
| Improve this Doc View SourceParseOriginData(IDictionary<String, String>, GetTransactionInfoResponse)
Find and parse origin data
Declaration
public override Task ParseOriginData(IDictionary<string, string> lastmetadata, GetTransactionInfoResponse txinfo = null)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IDictionary<System.String, System.String> | lastmetadata | |
GetTransactionInfoResponse | txinfo |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task |
Overrides
| Improve this Doc View SourceParseSpecific(IDictionary<String, String>)
Parse specific parameters
Declaration
public override void ParseSpecific(IDictionary<string, string> metadata)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IDictionary<System.String, System.String> | metadata |