react-native-qonversion
Version:
Qonversion provides full in-app purchases infrastructure, so you do not need to build your own server for receipt validation. Implement in-app subscriptions, validate user receipts, check subscription status, and provide access to your app features and co
27 lines (26 loc) • 1.07 kB
TypeScript
/**
* @deprecated
*/
declare class SkuDetails {
description: string;
freeTrialPeriod: string;
iconUrl: string;
introductoryPrice: string;
introductoryPriceAmountMicros: number;
introductoryPriceCycles: number;
introductoryPricePeriod: string;
originalJson: string;
originalPrice: string;
originalPriceAmountMicros: number;
price: string;
priceAmountMicros: number;
priceCurrencyCode: string;
sku: string;
subscriptionPeriod: string;
title: string;
type: string;
hashCode: number;
toString: string;
constructor(description: string, freeTrialPeriod: string, iconUrl: string, introductoryPrice: string, introductoryPriceAmountMicros: number, introductoryPriceCycles: number, introductoryPricePeriod: string, originalJson: string, originalPrice: string, originalPriceAmountMicros: number, price: string, priceAmountMicros: number, priceCurrencyCode: string, sku: string, subscriptionPeriod: string, title: string, type: string, hashCode: number, toString: string);
}
export default SkuDetails;