> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# Resource: Pricing Plans Settings

# Type: Pricing Plans Settings Object

# Link: https://dev.wix.com/docs/api-reference/business-solutions/pricing-plans/pricing-plans-settings/pricing-plans-settings-object.md

## Description: Pricing Plans settings are the site-level settings that control how pricing plans are sold on a site.
A site has a single Pricing Plans settings object, and it applies to every plan on the site.

## Schema:

```json
 Type: Pricing Plans Settings Object | type: PricingPlansSettings
 Description: Pricing Plans settings are the site-level settings that control how pricing plans are sold on a site.
A site has a single Pricing Plans settings object, and it applies to every plan on the site.
       - name: revision  | type: string | description: Revision number, which increments by 1 each time the Pricing Plans settings are updated. To prevent conflicting changes, the current revision must be passed when updating the Pricing Plans settings.
           - name: value  | type: string | description: 
       - name: createdDate  | type: string | description: Date and time the site's Pricing Plans settings were created, which happens when the Wix Pricing Plans app is installed on the site.  For a site whose settings were never created, this is the date and time of the current read.
           - name: seconds  | type: string | description: 
           - name: nanos  | type: number | description: 
       - name: updatedDate  | type: string | description: Date and time the site's Pricing Plans settings were last updated.
       - name: taxableAddress  | type: string | description: Which of the site's addresses determines how tax is calculated for pricing plan purchases. Applies to every plan on the site.  If set to `BUSINESS` and the site has no business address configured, plan purchases fail until an address is added to the site's [business info](https://dev.wix.com/docs/rest/business-management/site-properties/introduction.md).  Default: `BILLING`.
           enum: BILLING, BUSINESS
       - name: extendedFields  | type: ExtendedFields | description: Custom field data for the Pricing Plans settings object.  [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions.md) must be configured in the app dashboard before they can be accessed with API calls.
           - name: namespaces  | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured.  You can only access fields for which you have the appropriate permissions.  Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md).
       - name: guestCheckoutSettings  | type: GuestCheckoutSettings | description: Guest checkout settings, which control whether site visitors can buy a pricing plan without signing in as a site member.
           - name: enabled  | type: boolean | description: Whether site visitors can purchase a pricing plan without signing in as a site member. Applies to every plan on the site. When `false`, a visitor who selects any plan must sign in as a site member before they can complete the purchase.  Default: `false`.
               - name: value  | type: boolean | description: 
       - name: invoiceSettings  | type: InvoiceSettings | description: Invoice settings, which control whether buyers automatically receive an invoice after paying for a pricing plan online.
           - name: sendInvoiceOnPayment  | type: boolean | description: Whether an invoice is automatically created and sent to the buyer each time an online payment for a pricing plan succeeds.  Applies only to subscriptions that weren't purchased with the eCommerce APIs.  Default: `false`.

```