Interface JSONSubscription

interface JSONSubscription {
    canceledAt: null | number;
    country?: string;
    createdAt: number;
    currentPeriodEnd: number;
    currentPeriodStart: number;
    entitlementIDs: string[];
    id: string;
    renewalSKUIDs: string[];
    skuIDs: string[];
    status: SubscriptionStatuses;
    userID: string;
}

Hierarchy (view full)

Properties

canceledAt: null | number
country?: string
createdAt: number
currentPeriodEnd: number
currentPeriodStart: number
entitlementIDs: string[]
id: string
renewalSKUIDs: string[]
skuIDs: string[]
userID: string