Skip to main content

InvoiceLineCodingDimensionCombinationProposalDto

Invoice Line Coding Dimension Combination Proposal DTO model.

invoiceLineNumberstringnullable

Sequence number for a coding proposal for an invoice

Example: 1
dimensionCombinationProposals object[]

Array of proposals for dimension combinations. Ordered by certainty with the first entry being the proposal with the highest certainty.

  • Array [
  • confidencestringnullable

    Possible values: [Low, Medium, High]

    proposalPriorityinteger<int32>

    Priority index indicating the priority of the proposal. The lowest number indicates the highest priority.

    Example: 1
    dimensionsWithValues object[]
  • Array [
  • externalDimensionIdstring

    The unique identifier of the dimension in your ERP system. Is expected to be unique within the company.

    Example: Assurance-155
    externalDimensionNamestringnullable

    Name of the dimension

    Example: Assurance
    externalDimensionValueIdstringnullable

    The unique identifier of the specific value for this dimension. Is expected to be unique within the company.

    Example: Assurance01
    externalDimensionValueNamestringnullable

    The name for the dimension value

    Example: Assurance dimension
  • ]
  • ]
  • InvoiceLineCodingDimensionCombinationProposalDto
    {
    "invoiceLineNumber": "1",
    "dimensionCombinationProposals": [
    {
    "confidence": "Low",
    "proposalPriority": 1,
    "dimensionsWithValues": [
    {
    "externalDimensionId": "Assurance-155",
    "externalDimensionName": "Assurance",
    "externalDimensionValueId": "Assurance01",
    "externalDimensionValueName": "Assurance dimension"
    }
    ]
    }
    ]
    }