@adapty/capacitor - v3.10.0-beta.1
    Preparing search index...

    Interface AdaptyPaywallProduct

    Describes an object that represents a product. Used in Adapty.getPaywallProducts method and in Adapty.makePurchase method.

    interface AdaptyPaywallProduct {
        adaptyId: string;
        ios?: { isFamilyShareable: boolean };
        localizedDescription: string;
        localizedTitle: string;
        payloadData?: string;
        paywallABTestName: string;
        paywallName: string;
        paywallProductIndex: number;
        price?: AdaptyPrice;
        regionCode?: string;
        subscription?: AdaptySubscriptionDetails;
        variationId: string;
        vendorProductId: string;
        webPurchaseUrl?: string;
    }
    Index

    Properties

    adaptyId: string
    ios?: { isFamilyShareable: boolean }

    Type Declaration

    localizedDescription: string

    A description of the product.

    localizedTitle: string

    The name of the product.

    payloadData?: string
    paywallABTestName: string

    Same as abTestName property of the parent AdaptyPaywall.

    paywallName: string

    Same as name property of the parent AdaptyPaywall.

    paywallProductIndex: number
    price?: AdaptyPrice

    The cost of the product in the local currency

    regionCode?: string

    The region code of the locale used to format the price of the product. ISO 3166 ALPHA-2 (US, DE)

    variationId: string

    Same as variationId property of the parent AdaptyPaywall.

    vendorProductId: string

    Unique identifier of a product from App Store Connect or Google Play Console

    webPurchaseUrl?: string