Alokai

CustomizableDateOption

Contains information about a date picker that is defined as part of a customizable option.

type CustomizableDateOption = CustomizableOptionInterface & {
  __typename?: 'CustomizableDateOption';
  option_id?: Maybe<Scalars['Int']['output']>; /** The Stock Keeping Unit of the base product. */
  product_sku?: Maybe<Scalars['String']['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 object that defines a date field in a customizable option. */
  value?: Maybe<CustomizableDateValue>;
};

Referenced Types

On this page