ProductDiscount
Contains the discount applied to a product price.
type ProductDiscount = {
__typename?: 'ProductDiscount'; /** The actual value of the discount. */
amount_off?: Maybe<Scalars['Float']['output']>; /** The discount expressed a percentage. */
percent_off?: Maybe<Scalars['Float']['output']>;
};