OBJECT

BitsProductPurchaseInfo

Contains the Bits product's preview price and tax info for a Bits purchase, and error if a preview cannot be created.

link GraphQL Schema definition

1type BitsProductPurchaseInfo {
2
3# Lists any additional actions for a bits checkout session.
4actions: [CheckoutAction!]!
5
6# The error is present if purchase info failed to be retrieved.
7error: BitsProductPurchaseInfoError
8
9# Gets the preview price and tax info for the Bits purchase.
10previewPriceInfo: PriceInfo
11
12}