AccrualProposalDto
DTO representing an accrual proposal.
confidencestringrequired
The confidence level of the accrual proposal.
Possible values: [Low, Medium, High]
Example:
HighhasAccrualbooleannullable
Indicates whether the posting group has an accrual. It is possible that HasAccrual is true even though the accrual details are not fully specified.
Example:
trueaccrualCodestringnullable
The accrual code for the posting group.
Example:
1234accrualStartDatestring<date-time>nullable
The start date of the accrual period.
Example:
2025-01-01accrualEndDatestring<date-time>nullable
The end date of the accrual period.
Example:
2026-03-31AccrualProposalDto
{
"confidence": "High",
"hasAccrual": true,
"accrualCode": "1234",
"accrualStartDate": "2025-01-01",
"accrualEndDate": "2026-03-31"
}