react-native-adapty - v3.15.2
    Preparing search index...

    Interface AdaptyAndroidSubscriptionUpdateParameters

    interface AdaptyAndroidSubscriptionUpdateParameters {
        isOfferPersonalized?: boolean;
        oldSubVendorProductId: string;
        prorationMode: AdaptyAndroidSubscriptionUpdateReplacementMode;
    }
    Index

    Properties

    isOfferPersonalized?: boolean

    Use AdaptyAndroidPurchaseParams.isOfferPersonalized instead. This field has been moved to the upper level in the new structure.

    // OLD (deprecated):
    android: {
    oldSubVendorProductId: 'old_product_id',
    prorationMode: 'charge_prorated_price',
    isOfferPersonalized: true // This field is deprecated
    }

    // NEW:
    android: {
    subscriptionUpdateParams: {
    oldSubVendorProductId: 'old_product_id',
    prorationMode: 'charge_prorated_price'
    },
    isOfferPersonalized: true // Moved to upper level
    }
    oldSubVendorProductId: string