--- title: DiscountApplication - Storefront API description: | Discount applications capture the intentions of a discount source at the time of application. api_version: 2025-01 api_name: storefront type: interface api_type: graphql source_url: html: https://shopify.dev/docs/api/storefront/2025-01/interfaces/discountapplication md: https://shopify.dev/docs/api/storefront/2025-01/interfaces/discountapplication.md --- # Discount​Application interface Discount applications capture the intentions of a discount source at the time of application. ## Fields * allocation​Method [Discount​Application​Allocation​Method!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationAllocationMethod) non-null The method by which the discount's value is allocated to its entitled items. * target​Selection [Discount​Application​Target​Selection!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationTargetSelection) non-null Which lines of targetType that the discount is allocated over. * target​Type [Discount​Application​Target​Type!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationTargetType) non-null The type of line that the discount is applicable towards. * value [Pricing​Value!](https://shopify.dev/docs/api/storefront/2025-01/unions/PricingValue) non-null The value of the discount application. *** ## Types implemented in * [Automatic​Discount​Application](https://shopify.dev/docs/api/storefront/2025-01/objects/AutomaticDiscountApplication) OBJECT Automatic discount applications capture the intentions of a discount that was automatically applied. * allocation​Method [Discount​Application​Allocation​Method!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationAllocationMethod) non-null The method by which the discount's value is allocated to its entitled items. * target​Selection [Discount​Application​Target​Selection!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationTargetSelection) non-null Which lines of targetType that the discount is allocated over. * target​Type [Discount​Application​Target​Type!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationTargetType) non-null The type of line that the discount is applicable towards. * title [String!](https://shopify.dev/docs/api/storefront/2025-01/scalars/String) non-null The title of the application. * value [Pricing​Value!](https://shopify.dev/docs/api/storefront/2025-01/unions/PricingValue) non-null The value of the discount application. * [Discount​Code​Application](https://shopify.dev/docs/api/storefront/2025-01/objects/DiscountCodeApplication) OBJECT Discount code applications capture the intentions of a discount code at the time that it is applied. * allocation​Method [Discount​Application​Allocation​Method!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationAllocationMethod) non-null The method by which the discount's value is allocated to its entitled items. * applicable [Boolean!](https://shopify.dev/docs/api/storefront/2025-01/scalars/Boolean) non-null Specifies whether the discount code was applied successfully. * code [String!](https://shopify.dev/docs/api/storefront/2025-01/scalars/String) non-null The string identifying the discount code that was used at the time of application. * target​Selection [Discount​Application​Target​Selection!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationTargetSelection) non-null Which lines of targetType that the discount is allocated over. * target​Type [Discount​Application​Target​Type!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationTargetType) non-null The type of line that the discount is applicable towards. * value [Pricing​Value!](https://shopify.dev/docs/api/storefront/2025-01/unions/PricingValue) non-null The value of the discount application. * [Manual​Discount​Application](https://shopify.dev/docs/api/storefront/2025-01/objects/ManualDiscountApplication) OBJECT Manual discount applications capture the intentions of a discount that was manually created. * allocation​Method [Discount​Application​Allocation​Method!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationAllocationMethod) non-null The method by which the discount's value is allocated to its entitled items. * description [String](https://shopify.dev/docs/api/storefront/2025-01/scalars/String) The description of the application. * target​Selection [Discount​Application​Target​Selection!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationTargetSelection) non-null Which lines of targetType that the discount is allocated over. * target​Type [Discount​Application​Target​Type!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationTargetType) non-null The type of line that the discount is applicable towards. * title [String!](https://shopify.dev/docs/api/storefront/2025-01/scalars/String) non-null The title of the application. * value [Pricing​Value!](https://shopify.dev/docs/api/storefront/2025-01/unions/PricingValue) non-null The value of the discount application. * [Script​Discount​Application](https://shopify.dev/docs/api/storefront/2025-01/objects/ScriptDiscountApplication) OBJECT Script discount applications capture the intentions of a discount that was created by a Shopify Script. * allocation​Method [Discount​Application​Allocation​Method!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationAllocationMethod) non-null The method by which the discount's value is allocated to its entitled items. * target​Selection [Discount​Application​Target​Selection!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationTargetSelection) non-null Which lines of targetType that the discount is allocated over. * target​Type [Discount​Application​Target​Type!](https://shopify.dev/docs/api/storefront/2025-01/enums/DiscountApplicationTargetType) non-null The type of line that the discount is applicable towards. * title [String!](https://shopify.dev/docs/api/storefront/2025-01/scalars/String) non-null The title of the application as defined by the Script. * value [Pricing​Value!](https://shopify.dev/docs/api/storefront/2025-01/unions/PricingValue) non-null The value of the discount application. *** ##### Variables ```json { "allocationMethod": "", "targetSelection": "", "targetType": "", "value": "" } ``` ##### Schema ```graphql interface DiscountApplication { allocationMethod: DiscountApplicationAllocationMethod! targetSelection: DiscountApplicationTargetSelection! targetType: DiscountApplicationTargetType! value: PricingValue! } ```