FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
doc
/
models
Edit File: checkout-merchant-settings.md
# Checkout Merchant Settings ## Structure `CheckoutMerchantSettings` ## Fields | Name | Type | Tags | Description | Getter | Setter | | --- | --- | --- | --- | --- | --- | | `paymentMethods` | [`?CheckoutMerchantSettingsPaymentMethods`](../../doc/models/checkout-merchant-settings-payment-methods.md) | Optional | - | getPaymentMethods(): ?CheckoutMerchantSettingsPaymentMethods | setPaymentMethods(?CheckoutMerchantSettingsPaymentMethods paymentMethods): void | | `updatedAt` | `?string` | Optional | The timestamp when the settings were last updated, in RFC 3339 format.<br>Examples for January 25th, 2020 6:25:34pm Pacific Standard Time:<br>UTC: 2020-01-26T02:25:34Z<br>Pacific Standard Time with UTC offset: 2020-01-25T18:25:34-08:00 | getUpdatedAt(): ?string | setUpdatedAt(?string updatedAt): void | ## Example (as JSON) ```json { "payment_methods": { "apple_pay": { "enabled": false }, "google_pay": { "enabled": false }, "cash_app": { "enabled": false }, "afterpay_clearpay": { "order_eligibility_range": { "min": { "amount": 34, "currency": "ISK" }, "max": { "amount": 140, "currency": "OMR" } }, "item_eligibility_range": { "min": { "amount": 34, "currency": "ISK" }, "max": { "amount": 140, "currency": "OMR" } }, "enabled": false } }, "updated_at": "updated_at0" } ```
Save
Back