Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

22 wiersze
2.6 KiB

  1. # Copyright © Magento, Inc. All rights reserved.
  2. # See COPYING.txt for license details.
  3. type StoreConfig {
  4. zero_subtotal_enabled: Boolean @doc(description: "Indicates whether the Zero Subtotal payment method is enabled.")
  5. zero_subtotal_title: String @doc(description: "The title of the Zero Subtotal payment method displayed on the storefront.")
  6. zero_subtotal_new_order_status: String @doc(description: "The status of new orders placed using the Zero Subtotal payment method.")
  7. zero_subtotal_payment_action: String @doc(description: "When the new order status is 'Processing', this can be set to `authorize_capture` to automatically invoice all items that have a zero balance.")
  8. zero_subtotal_enable_for_specific_countries: Boolean @doc(description: "Indicates whether only specific countries can use this payment method.")
  9. zero_subtotal_payment_from_specific_countries: String @doc(description: "A comma-separated list of specific countries allowed to use the Zero Subtotal payment method.")
  10. zero_subtotal_sort_order: Int @doc(description: "A number indicating the position of the Zero Subtotal payment method in the list of available payment methods during checkout.")
  11. check_money_order_enabled: Boolean @doc(description: "Indicates whether the Check/Money Order payment method is enabled.")
  12. check_money_order_title: String @doc(description: "The title of the Check/Money Order payment method displayed on the storefront.")
  13. check_money_order_new_order_status: String @doc(description: "The status of new orders placed using the Check/Money Order payment method.")
  14. check_money_order_enable_for_specific_countries: Boolean @doc(description: "Indicates whether only specific countries can use this payment method.")
  15. check_money_order_payment_from_specific_countries: String @doc(description: "A comma-separated list of specific countries allowed to use the Check/Money Order payment method.")
  16. check_money_order_make_check_payable_to: String @doc(description: "The name of the party to whom the check must be payable.")
  17. check_money_order_send_check_to: String @doc(description: "The full street address or PO Box where the checks are mailed.")
  18. check_money_order_min_order_total: String @doc(description: "The minimum order amount required to qualify for the Check/Money Order payment method.")
  19. check_money_order_max_order_total: String @doc(description: "The maximum order amount required to qualify for the Check/Money Order payment method.")
  20. check_money_order_sort_order: Int @doc(description: "A number indicating the position of the Check/Money Order payment method in the list of available payment methods during checkout.")
  21. }