CustomizableDateValue
Defines the price and sku of a product whose page contains a customized date picker.
type CustomizableDateValue = {
__typename?: 'CustomizableDateValue'; /** 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']>; /** DATE, DATE_TIME or TIME */
type?: Maybe<CustomizableDateTypeEnum>; /** The unique ID for a `CustomizableDateValue` object. */
uid: Scalars['ID']['output'];
};