CustomizableFieldValue
Defines the price and sku of a product whose page contains a customized text field.
type CustomizableFieldValue = {
__typename?: 'CustomizableFieldValue'; /** The maximum number of characters that can be entered for this customizable option. */
max_characters?: Maybe<Scalars['Int']['output']>; /** The price of the custom value. */
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 `CustomizableFieldValue` object. */
uid: Scalars['ID']['output'];
};