import { BaseCartLine } from '@daffodil/driver/shopify'
Represents a cart line common fields.
type BaseCartLine = {
attribute?: Maybe<Attribute>;
attributes: Array<Attribute>;
cost: CartLineCost;
discountAllocations: Array<CartDiscountAllocation>;
estimatedCost: CartLineEstimatedCost;
id: Scalars['ID']['output'];
merchandise: Merchandise;
quantity: Scalars['Int']['output'];
sellingPlanAllocation?: Maybe<SellingPlanAllocation>;
}