CustomizableAreaValue
Defines the price and sku of a product whose page contains a customized text area.
type CustomizableAreaValue = {
__typename?: 'CustomizableAreaValue'; /** The maximum number of characters that can be entered for this customizable option. */
max_characters?: Maybe<Scalars['Int']['output']>; /** The price assigned to this option. */
price?: Maybe<Scalars['Float']['output']>; /** FIXED, PERCENT, or DYNAMIC. */
price_type?: Maybe<PriceTypeEnum>; /** The Stock Keeping Unit for this option. */
sku?: Maybe<Scalars['String']['output']>; /** The unique ID for a `CustomizableAreaValue` object. */
uid: Scalars['ID']['output'];
};