Interface DonutDonatorSubscriptionInfo

interface DonutDonatorSubscriptionInfo {
    amount: number;
    next_payment_date: number;
    owner_id: number;
    status: "active" | "expiring";
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

amount: number
next_payment_date: number
owner_id: number
status: "active" | "expiring"

Generated using TypeDoc