Type alias SubscriptionInvoice

SubscriptionInvoice: {
    amount: number;
    amountDue: number;
    amountPaid: number;
    billingEnd: number;
    billingStart: number;
    createdAt: number;
    currency: string;
    id: string;
    issuedAt: number;
    lineItems: LineItem[];
    paidAt: number | null;
    paymentId: string;
    shortUrl: string;
    status: string;
}

Type declaration

  • amount: number
  • amountDue: number
  • amountPaid: number
  • billingEnd: number
  • billingStart: number
  • createdAt: number
  • currency: string
  • id: string
  • issuedAt: number
  • lineItems: LineItem[]
  • paidAt: number | null
  • paymentId: string
  • shortUrl: string
  • status: string