Alokai

CustomizableCheckboxOption

Contains information about a set of checkbox values that are defined as part of a customizable option.

type CustomizableCheckboxOption = CustomizableOptionInterface & {
  __typename?: 'CustomizableCheckboxOption';
  option_id?: Maybe<Scalars['Int']['output']>; /** Indicates whether the option is required. */
  required?: Maybe<Scalars['Boolean']['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 `CustomizableOptionInterface` object. */
  uid: Scalars['ID']['output']; /** An array that defines a set of checkbox values. */
  value?: Maybe<Array<Maybe<CustomizableCheckboxValue>>>;
};

Referenced Types

On this page