CPQ API FeatureModel

The Feature model represents a product feature data model in Salesforce CPQ.
Available in: Salesforce CPQ Summer ’16 and later

Name Type Description
record SBQQ__ProductFeature__c The record that this model represents.
instructionsText String Instruction label for the feature.
containsUpgrades Boolean This feature is related to an upgrade product.
1public class FeatureModel { 
2    public SBQQ__ProductFeature__c record; 
3    public String instructionsText; 
4    public Boolean containsUpgrades; 
5}