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