BenefitsOfferingRolloverValidationConfiguration
Specifies read-only configuration rules that the client must adhere to when configuring Rollover.
type BenefitsOfferingRolloverValidationConfiguration {
defaultRolloverAmount: DecimalString!
maximumRolloverAmount: DecimalString
minimumRolloverAmount: DecimalString!
}
Fields
BenefitsOfferingRolloverValidationConfiguration.defaultRolloverAmount
● DecimalString!
non-null scalar
The recommended default value for Rollover.
BenefitsOfferingRolloverValidationConfiguration.maximumRolloverAmount
● DecimalString
scalar
The maximum Rollover amount. If unspecified, no validation will occur on the maximum value for this field. If specified, values greater than this will lead to errors.
BenefitsOfferingRolloverValidationConfiguration.minimumRolloverAmount
● DecimalString!
non-null scalar
The minimum Rollover amount. This is not allowed to be nullable since, even in scenarios where there is not a defined minimum value, a value less than 0 is invalid and a value equal to 0 is equivalent to disabling Rollover. We represent Rollover as disabled using nullability.