# Shop
Information about the store, such as the store address, the total number of products, and various settings.
## Properties
### accepts_gift_cards
**Type:** boolean
Returns `true` if the store accepts gift cards. Returns `false` if not.
### address
**Type:** address
The address of the store.
### brand
**Type:** brand
The brand assets for the store.
### collections_count
**Type:** number
The number of collections in the store.
### currency
**Type:** string
The currency of the store.
### customer_accounts_enabled
**Type:** boolean
Returns `true` if the store shows a login link. Returns `false` if not.
### customer_accounts_optional
**Type:** boolean
Returns `true` if customer accounts are optional to complete checkout. Returns `false` if not.
### description
**Type:** string
The description of the store.
### domain
**Type:** string
The primary domain of the store.
### email
**Type:** string
The sender email of the store.
### enabled_currencies
**Type:** array of currency
The currencies that the store accepts.
> Tip: You can get the store's currency with `shop.currency`.
### enabled_payment_types
**Type:** array of string
The accepted payment types on the store. These are based on enabled payment providers and the customer's current region and currency.
> Tip: Use the `payment_type_svg_tag` filter to output SVG logos, or the `payment_type_img_url` filter to get source URLs.
### id
**Type:** string
The ID of the store.
### metafields
The metafields applied to the store.
> Tip: See Create and manage metafields or the Shopify Help Center for metafield creation details.
### money_format
**Type:** currency
The money format of the store.
### money_with_currency_format
**Type:** currency
The money format of the store with the currency included.
### name
**Type:** string
The name of the store.
### password_message
**Type:** string
The password page message of the store.
### permanent_domain
**Type:** string
The `.myshopify.com` domain of the store.
### phone
**Type:** string
The phone number of the store.
### policies
**Type:** array of policy
The policies for the store, set in the store's Policies settings.
### privacy_policy
**Type:** policy
The privacy policy for the store.
### products_count
**Type:** number
The number of products in the store.
### published_locales
**Type:** array of shop_locale
The locales (languages) that are published on the store.
### refund_policy
**Type:** policy
The refund policy for the store.
### secure_url
**Type:** string
The full URL of the store, with an `https` protocol.
### shipping_policy
**Type:** policy
The shipping policy for the store.
### subscription_policy
**Type:** policy
The subscription policy for the store.
### terms_of_service
**Type:** policy
The terms of service for the store.
### types
**Type:** array of string
All of the product types in the store.
### url
**Type:** string
The full URL of the store.
### vendors
**Type:** array of string
All of the product vendors for the store.
## Deprecated Properties
### enabled_locales
**Type:** array of shop_locale
**Status:** Deprecated
**Replacement:** Use `shop.published_locales` instead.
### locale
**Type:** shop_locale
**Status:** Deprecated
**Replacement:** Use `request.locale` instead.
### metaobjects
**Status:** Deprecated
**Replacement:** Use `metaobjects` instead.
### taxes_included
**Type:** boolean
**Status:** Deprecated
**Replacement:** Use `cart.taxes_included` instead.