InvoiceLineCodingDimensionProposalDto
invoiceLineNumberstring
Sequence number for a coding proposal for a invoice
Example:
1
dimensionProposals object[]
Array of dimensions related to the invoice line. Ordered alphabetically by the dimension name.
Array [
externalDimensionIdstring
The unique identifier of the dimension in your ERP system.
Example:
Assurance-155
externalDimensionNamestringnullable
Name of the dimension
Example:
Assurance
dimensionValueProposals object[]nullable
Array of coding proposals. Ordered by certainty with the first entry being the proposal with the highest certainty.
Array [
externalDimensionValueIdstringnullable
Identifier of the dimension value in your ERP system. Is expected to be unique within the company.
Example:
Assurance01
externalDimensionValueNamestringnullable
Name of the dimension value in your ERP system.
Example:
Assurance-155
confidencestring
Possible values: [Low
, Medium
, High
]
proposalPriorityinteger<int32>
Priority index indicating the priority of the proposal. The lowest number indicates the highest priority.
Example:
1
]
]
InvoiceLineCodingDimensionProposalDto
{
"invoiceLineNumber": "1",
"dimensionProposals": [
{
"externalDimensionId": "Assurance-155",
"externalDimensionName": "Assurance",
"dimensionValueProposals": [
{
"externalDimensionValueId": "Assurance01",
"externalDimensionValueName": "Assurance-155",
"confidence": "Low",
"proposalPriority": 1
}
]
}
]
}