Interface PurchasesPromotionalOffer

Holds the information about a PromotionalOffer in Apple's App Store.

interface PurchasesPromotionalOffer {
    identifier: string;
    keyIdentifier: string;
    nonce: string;
    signature: string;
    timestamp: number;
}

Properties

identifier: string
keyIdentifier: string
nonce: string
signature: string
timestamp: number