GraphQL OBJECT

ProductDeliverySettings

Delivery settings of the product.

link Definition

  • type ProductDeliverySettings {
  • # List of deliveries.
  • productDeliveries: [ProductDelivery]
  • # Custom license key information, such as customer name, product name, or license
  • # key number, displayed on the confirmation page. If empty, the default key
  • # template is used.
  • #
  • # Arguments
  • # languageIds: Array of relevant languageIds.
  • keyTemplates(languageIds: [LanguageEnum]): [LocalizedString]
  • # Custom license key information, such as customer name, product name, or license
  • # key number, displayed in the confirmation email. If empty, the default or custom
  • # key template is used.
  • #
  • # Arguments
  • # languageIds: Array of relevant languageIds.
  • emailKeyTemplates(languageIds: [LanguageEnum]): [LocalizedString]
  • # Additional delivery information displayed on the confirmation page.
  • #
  • # Arguments
  • # languageIds: Array of relevant languageIds.
  • deliveryNotes(languageIds: [LanguageEnum]): [LocalizedString]
  • # Information on extra page when the installation instructions or other product
  • # information are too long to fit on the confirmation page. Creates a button on
  • # the confirmation page that the customer clicks to open the instructions in a
  • # separate window.
  • #
  • # Arguments
  • # languageIds: Array of relevant languageIds.
  • deliveryInformation(languageIds: [LanguageEnum]): [LocalizedString]
  • }