Skip to main content

InvoiceCodingDimensionPrecisionDto

DTO representing the precision of invoice coding dimension proposals over a specified period.

fromdate-timerequired

The start date of the precision period (inclusive).

todate-timerequired

The end date of the precision period (inclusive).

dimensionPrecisions object[]required

The list of dimension precisions within the specified period.

  • Array [
  • dimensionNamestringrequired

    The name of the dimension.

    confidenceLevelstringrequired

    The confidence level of the precision metric (e.g., High, Medium, Low).

    sampleSizeint32

    The number of samples used to calculate the precision.

    precisionfloat

    The precision percentage for the dimension and confidence level.

    A value between 0 and 100 representing the accuracy of coding proposals.

  • ]
  • InvoiceCodingDimensionPrecisionDto
    {
    "from": "2024-07-29T15:51:28.071Z",
    "to": "2024-07-29T15:51:28.071Z",
    "dimensionPrecisions": [
    {
    "dimensionName": "string",
    "confidenceLevel": "string",
    "sampleSize": 0,
    "precision": 0
    }
    ]
    }