SellingPlan
Represents how products and variants can be sold and purchased.
import { SellingPlan } from '@daffodil/driver/shopify'
type SellingPlan = {
__typename?: 'SellingPlan';
checkoutCharge: SellingPlanCheckoutCharge;
description?: Maybe<Scalars['String']['output']>;
id: Scalars['ID']['output'];
name: Scalars['String']['output'];
options: Array<SellingPlanOption>;
priceAdjustments: Array<SellingPlanPriceAdjustment>;
recurringDeliveries: Scalars['Boolean']['output'];
}
Type | Options |
---|---|
SellingPlan | {
__typename?: 'SellingPlan';
checkoutCharge: SellingPlanCheckoutCharge;
description?: Maybe<Scalars['String']['output']>;
id: Scalars['ID']['output'];
name: Scalars['String']['output'];
options: Array<SellingPlanOption>;
priceAdjustments: Array<SellingPlanPriceAdjustment>;
recurringDeliveries: Scalars['Boolean']['output'];
} |