Alokai

CustomizableDropDownValue

Defines the price and sku of a product whose page contains a customized drop down menu.

type CustomizableDropDownValue = {
  __typename?: 'CustomizableDropDownValue'; /** The ID assigned to the value. */
  option_type_id?: 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 order in which the option is displayed. */
  sort_order?: Maybe<Scalars['Int']['output']>; /** The display name for this option. */
  title?: Maybe<Scalars['String']['output']>; /** The unique ID for a `CustomizableDropDownValue` object. */
  uid: Scalars['ID']['output'];
};

Referenced Types

On this page