Chameleon
    Preparing search index...

    Interface Subscription

    interface Subscription {
        id: string;
        userId: string;
        skuIds: string[];
        entitlementIds: string[];
        renewalSkuIds: string[] | null;
        currentPeriodStart: number;
        currentPeriodEnd: number;
        status: number;
        canceledAt: number | null;
        country?: string;
    }
    Index

    Properties

    id: string
    userId: string
    skuIds: string[]
    entitlementIds: string[]
    renewalSkuIds: string[] | null
    currentPeriodStart: number
    currentPeriodEnd: number
    status: number
    canceledAt: number | null
    country?: string