Alokai

CustomizableRadioValue

Defines the price and sku of a product whose page contains a customized set of radio buttons.

type CustomizableRadioValue = {
  __typename?: 'CustomizableRadioValue'; /** 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 radio button is displayed. */
  sort_order?: Maybe<Scalars['Int']['output']>; /** The display name for this option. */
  title?: Maybe<Scalars['String']['output']>; /** The unique ID for a `CustomizableRadioValue` object. */
  uid: Scalars['ID']['output'];
};

Referenced Types

On this page