Interface JSONEntitlement

interface JSONEntitlement {
    applicationID: string;
    consumed: boolean;
    createdAt: number;
    deleted: boolean;
    endsAt: number;
    giftCodeFlags: number;
    guildID: null | string;
    id: string;
    promotionID: null | string;
    skuID: string;
    startsAt: number;
    subscriptionID: string;
    type: EntitlementTypes;
    userID: null | string;
}

Hierarchy (view full)

Properties

applicationID: string
consumed: boolean
createdAt: number
deleted: boolean
endsAt: number
giftCodeFlags: number
guildID: null | string
id: string
promotionID: null | string
skuID: string
startsAt: number
subscriptionID: string
userID: null | string