DimensionCombinationProposalDto
DTO representing a proposal for a combination of dimension values.
confidencestringnullable
The confidence level of the proposal.
Possible values: [Low, Medium, High]
proposalPriorityinteger<int32>
Priority index indicating the priority of the proposal. The lowest number indicates the highest priority.
Example:
1dimensionsWithValues object[]
The dimensions with their corresponding values in the proposal.
Array [
externalDimensionIdstringrequired
The unique identifier of the dimension in your ERP system. Is expected to be unique within the company.
Example:
Assurance-155externalDimensionNamestringnullable
Name of the dimension
Example:
AssuranceexternalDimensionValueIdstringnullable
The unique identifier of the specific value for this dimension. Is expected to be unique within the company.
Example:
Assurance01externalDimensionValueNamestringnullable
The name for the dimension value
Example:
Assurance dimension]
DimensionCombinationProposalDto
{
"confidence": "Low",
"proposalPriority": 1,
"dimensionsWithValues": [
{
"externalDimensionId": "Assurance-155",
"externalDimensionName": "Assurance",
"externalDimensionValueId": "Assurance01",
"externalDimensionValueName": "Assurance dimension"
}
]
}