myDATATools.getPeppolItemClass Method
This method returns data for the peppolItemClass.itemClass field.
For more information about each item classification code, check the Peppol Item Classification
This function is not available in the Trial Version.
Public Function getPeppolItemClass() As Dictionary(Of String, String)
This language is not supported or no code example is available.
Return Value
Dictionary<string, string>myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key"); Dictionary<string, string> classes = mdt.getPeppolItemClass(); foreach (var cls In classes) { Console.WriteLine(" Classification Code: " & cls.Key); Console.WriteLine("Classification Description: " & cls.Value); }
This language is not supported or no code example is available.
Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key") Dim classes As Dictionary(Of String, String) = mdt.getPeppolItemClass() For Each cls In classes Console.WriteLine(" Classification Code: " & cls.Key) Console.WriteLine("Classification Description: " & cls.Value) Next
This language is not supported or no code example is available.