AccrualProposalDto
DTO representing an accrual proposal.
proposalPriorityint32required
The priority of the proposal, with lower numbers indicating higher priority.
Example:
1confidencestringrequired
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:
1234accrualStartDatedate-timenullable
The start date of the accrual period.
Example:
2025-01-01accrualEndDatedate-timenullable
The end date of the accrual period.
Example:
2026-03-31AccrualProposalDto
{
"proposalPriority": 1,
"confidence": "High",
"hasAccrual": true,
"accrualCode": 1234,
"accrualStartDate": "2025-01-01",
"accrualEndDate": "2026-03-31"
}