cordova-plugin-qonversion
Version:
Qonversion Cordova Plugin
14 lines (13 loc) • 703 B
TypeScript
import { PurchaseUpdatePolicy } from "./enums";
import { Product } from "./Product";
import { PromotionalOffer } from './PromotionalOffer';
export declare class PurchaseOptions {
readonly offerId: string | null;
readonly applyOffer: boolean;
readonly oldProduct: Product | null;
readonly updatePolicy: PurchaseUpdatePolicy | null;
readonly contextKeys: string[] | null;
readonly quantity: number;
readonly promotionalOffer: PromotionalOffer | null;
constructor(offerId: string | null, applyOffer: boolean, oldProduct: Product | null, updatePolicy: PurchaseUpdatePolicy | null, contextKeys: string[] | null, quantity: number, promotionalOffer: PromotionalOffer | null);
}