--- title: SellingPlanCheckoutChargeValue - Storefront API description: The portion of the price to be charged at checkout. api_version: 2025-10 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 monetary value with currency. * 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 ```