CPQ API ConstraintModel

The Constraint model represents the option constraint object in Salesforce CPQ.
Available in: Salesforce CPQ Summer ’16 and later

Name Type Description
record SBQQ__OptionConstraint__c The record that this model represents.
priorOptionExists Boolean Checks if this option is an asset on the account that the quote is associated with.
1public class ConstraintModel { 
2    public SBQQ__OptionConstraint__c record; 
3    public Boolean priorOptionExists; 
4}