import { DiscountCodeApplication } from '@daffodil/driver/shopify'
Discount code applications capture the intentions of a discount code at the time that it is applied.
type DiscountCodeApplication = DiscountApplication & {
__typename?: 'DiscountCodeApplication';
allocationMethod: DiscountApplicationAllocationMethod;
applicable: Scalars['Boolean']['output'];
code: Scalars['String']['output'];
targetSelection: DiscountApplicationTargetSelection;
targetType: DiscountApplicationTargetType;
value: PricingValue;
}