--- title: PricingValue - Storefront API description: The price value (fixed or percentage) for a discount application. api_version: 2024-10 api_name: storefront type: union api_type: graphql source_url: html: 'https://shopify.dev/docs/api/storefront/2024-10/unions/PricingValue' md: 'https://shopify.dev/docs/api/storefront/2024-10/unions/PricingValue.txt' --- # Pricing​Value union The price value (fixed or percentage) for a discount application. ## Possible types * [Money​V2](https://shopify.dev/docs/api/storefront/2024-10/objects/MoneyV2) OBJECT A monetary value with currency. * amount [Decimal!](https://shopify.dev/docs/api/storefront/2024-10/scalars/Decimal) non-null Decimal money amount. * currency​Code [Currency​Code!](https://shopify.dev/docs/api/storefront/2024-10/enums/CurrencyCode) non-null Currency of the money. * [Pricing​Percentage​Value](https://shopify.dev/docs/api/storefront/2024-10/objects/PricingPercentageValue) OBJECT The value of the percentage pricing object. * percentage [Float!](https://shopify.dev/docs/api/storefront/2024-10/scalars/Float) non-null The percentage value of the object. *** ## Fields with this union * [Automatic​Discount​Application.​value](https://shopify.dev/docs/api/storefront/2024-10/objects/AutomaticDiscountApplication#field-value) OBJECT Automatic discount applications capture the intentions of a discount that was automatically applied. * [Discount​Application.​value](https://shopify.dev/docs/api/storefront/2024-10/interfaces/DiscountApplication#field-value) INTERFACE Discount applications capture the intentions of a discount source at the time of application. * [Discount​Code​Application.​value](https://shopify.dev/docs/api/storefront/2024-10/objects/DiscountCodeApplication#field-value) OBJECT Discount code applications capture the intentions of a discount code at the time that it is applied. * [Manual​Discount​Application.​value](https://shopify.dev/docs/api/storefront/2024-10/objects/ManualDiscountApplication#field-value) OBJECT Manual discount applications capture the intentions of a discount that was manually created. * [Script​Discount​Application.​value](https://shopify.dev/docs/api/storefront/2024-10/objects/ScriptDiscountApplication#field-value) OBJECT Script discount applications capture the intentions of a discount that was created by a Shopify Script. *** ```graphql union PricingValue = MoneyV2 | PricingPercentageValue ```