ENUM

ProductTypename

Identifies the typename of the product

link GraphQL Schema definition

  • enum ProductTypename {
  • # A generic product, used for products not classified in more detail
  • GENERIC
  • # A physical product, which may carry content in either physical or digital form
  • PHYSICAL
  • # A physical book with graphical or textual content. e.g. a paperback
  • PHYSICAL_BOOK
  • # A physical product with audio content e.g. an audio CD
  • PHYSICAL_AUDIO
  • # A product in electronic form, rather than physical form, such as a downloadable
  • # resource. Digital products carried on a physical medium, such as CD-ROMs, are a
  • # physical type, not an electronic type.
  • ELECTRONIC
  • # A textual or graphical book product in electronic form, such as one delivered
  • # via PDF or EPUB file formats, or viewable online as HTML
  • ELECTRONIC_BOOK
  • # An audio book product in electronic form, such as one delivered via MP3 or
  • # streamed online
  • ELECTRONIC_AUDIO
  • }