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

    Interface AdaptyPaywall

    Describes an object that represents a paywall. Used in Adapty.getPaywall method.

    interface AdaptyPaywall {
        hasViewConfiguration: boolean;
        id: string;
        name: string;
        payloadData?: string;
        paywallBuilder?: AdaptyPaywallBuilder;
        placement: AdaptyPlacement;
        productIdentifiers: AdaptyProductIdentifier[];
        products: ProductReference[];
        remoteConfig?: AdaptyRemoteConfig;
        variationId: string;
        version?: number;
        webPurchaseUrl?: string;
    }
    Index

    Properties

    hasViewConfiguration: boolean

    If true, it is possible to fetch the view object and use it with AdaptyUI library.

    id: string
    name: string

    A paywall name.

    payloadData?: string
    paywallBuilder?: AdaptyPaywallBuilder
    placement: AdaptyPlacement
    productIdentifiers: AdaptyProductIdentifier[]

    Array of product identifiers for this paywall

    products: ProductReference[]

    Array of initial products info

    Use AdaptyPaywall.productIdentifiers instead

    remoteConfig?: AdaptyRemoteConfig

    A remote config configured in Adapty Dashboard for this paywall.

    variationId: string

    An identifier of a variation, used to attribute purchases to this paywall.

    version?: number
    webPurchaseUrl?: string