GitHub

BaseCartLine

Represents a cart line common fields.

import { BaseCartLine } from '@daffodil/driver/shopify'
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>;
}
Type Options
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>; }