CPQ API QuoteLineGroupModel

The Quote Line Group model represents a quote line group data model in Salesforce CPQ.
Available in: Salesforce CPQ Summer ’16 and later

Name Type Description
record SBQQ__QuoteLineGroup__c The record that this model represents.
netNonSegmentTotal Decimal The net total for all non-multidimensional quote lines.
key Integer Each quote line and group has a key that is unique amongst all other keys in the same quote.
1public class QuoteLineGroupModel {
2    public SBQQ__QuoteLineGroup__c record;
3    public Decimal netNonSegmentTotal;
4    public Integer key;
5}