Alokai

CustomizableFileValue

Defines the price and sku of a product whose page contains a customized file picker.

type CustomizableFileValue = {
  __typename?: 'CustomizableFileValue'; /** The file extension to accept. */
  file_extension?: Maybe<Scalars['String']['output']>; /** The maximum width of an image. */
  image_size_x?: Maybe<Scalars['Int']['output']>; /** The maximum height of an image. */
  image_size_y?: 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 unique ID for a `CustomizableFileValue` object. */
  uid: Scalars['ID']['output'];
};

Referenced Types

On this page