export interface CustomElements { /** * Determines whether the customer is asked to fill in the billing address. Relevant when a card payment method is selected. * - **true** - The address fields appear on the checkout page. * - **false** - The address fields appear only if the `country` is **US**, **GB** or **CA**. This is the default. * **Note:** When the customer already has address details, it will always be displayed. */ billing_address_collect: boolean; /** * Determines whether the checkout page displays the payment description. * - **true** - The payment description appears. * - **false** - The payment description does not appear. This is the default. * * Relevant when `description` is passed in the 'Create Checkout Page' request. */ display_description: boolean; /** * Determines whether the checkout page displays multiple currency options for a payment. * - **true** - Multiple currency options appear. * - **false** - Multiple currency options do not appear. This is the default. * * When the customer selects the requested currency, the checkout page displays the following information: * - The original amount and currency. * - The converted amount in the requested currency. * - The exchange rate. * * Relevant when: * - The 'Create Checkout Page' request passes `requested_currency`. * - `fixed_side` is **buy**. * - One or more payment methods support the values for `currency` and `requested_currency`. */ dynamic_currency_conversion: boolean; /** * Reserved. */ merchant_color: string; /** * In a payment with FX where `fixed_side`=**buy**, determines whether the buyer's currency and the exchange rate appear. * One of the following: * - **true** - The currency and the exchange rate are hidden. * - **false** - The currency and the exchange rate appear. This is the default. */ merchant_currency_only: boolean; /** * Determines whether payment fees appear on the checkout page. * - **true** - Payment fees appear when the `payment_fees` object is set in the 'Create Checkout Page' request. This is the default. * - **false** - Payment fees do not appear. */ payment_fees_display: boolean; /** * Determines whether the 'save card' checkbox is checked by default. * - **true** - The 'save card' checkbox is checked. * - **false** - The 'save card' checkbox is cleared. This is the default. * * Relevant when `customer_id` is passed in the 'Create Checkout Page' request. */ save_card_default: boolean; } //# sourceMappingURL=CustomElements.d.ts.map