--- title: SellingPlanCheckoutChargeValue - Storefront API description: The portion of the price to be charged at checkout. api_version: 2026-01 api_name: storefront type: union api_type: graphql source_url: html: https://shopify.dev/docs/api/storefront/latest/unions/SellingPlanCheckoutChargeValue md: https://shopify.dev/docs/api/storefront/latest/unions/SellingPlanCheckoutChargeValue.md --- # Selling​Plan​Checkout​Charge​Value union Requires `unauthenticated_read_selling_plans` access scope. The portion of the price to be charged at checkout. ## Possible types * [Money​V2](https://shopify.dev/docs/api/storefront/latest/objects/MoneyV2) OBJECT A precise monetary value with its associated currency. Combines a decimal amount with a three-letter [`CurrencyCode`](https://shopify.dev/docs/api/storefront/2026-01/enums/CurrencyCode) to express prices, costs, and other financial values. For example, 12.99 USD. * amount [Decimal!](https://shopify.dev/docs/api/storefront/latest/scalars/Decimal) non-null Decimal money amount. * currency​Code [Currency​Code!](https://shopify.dev/docs/api/storefront/latest/enums/CurrencyCode) non-null Currency of the money. * [Selling​Plan​Checkout​Charge​Percentage​Value](https://shopify.dev/docs/api/storefront/latest/objects/SellingPlanCheckoutChargePercentageValue) OBJECT The percentage value of the price used for checkout charge. * percentage [Float!](https://shopify.dev/docs/api/storefront/latest/scalars/Float) non-null The percentage value of the price used for checkout charge. *** ## Fields with this union * [Selling​Plan​Checkout​Charge.value](https://shopify.dev/docs/api/storefront/latest/objects/SellingPlanCheckoutCharge#field-SellingPlanCheckoutCharge.fields.value) OBJECT The initial payment due for the purchase. *** ```graphql union SellingPlanCheckoutChargeValue = MoneyV2 | SellingPlanCheckoutChargePercentageValue ```