import type * as Square from "../index"; /** * The settings allowed for AfterpayClearpay. */ export interface CheckoutMerchantSettingsPaymentMethodsAfterpayClearpay { /** Afterpay is shown as an option for order totals falling within the configured range. */ orderEligibilityRange?: Square.CheckoutMerchantSettingsPaymentMethodsAfterpayClearpayEligibilityRange; /** Afterpay is shown as an option for item totals falling within the configured range. */ itemEligibilityRange?: Square.CheckoutMerchantSettingsPaymentMethodsAfterpayClearpayEligibilityRange; /** Indicates whether the payment method is enabled for the account. */ enabled?: boolean; }