pl-api
    Preparing search index...

    Type Alias SubscriptionInvoice

    SubscriptionInvoice: {
        amount: number;
        chain_id: string;
        created_at: string;
        id: string;
        invoice_expires_at: string;
        payment_address: string;
        recipient_id: string;
        sender_id: string;
        status:
            | "open"
            | "forwarded"
            | "paid"
            | "timeout"
            | "cancelled"
            | "underpaid"
            | "completed"
            | "failed";
    }

    Type Declaration

    • amount: number

      Requested payment amount (in atomic units).

    • chain_id: string

      CAIP-2 chain ID.

    • created_at: string

      The date when invoice was created.

    • id: string

      Invoice ID.

    • invoice_expires_at: string

      The date when invoice times out.

    • payment_address: string

      Payment address.

    • recipient_id: string

      The ID of the recipient.

    • sender_id: string

      The ID of the sender.

    • status:
          | "open"
          | "forwarded"
          | "paid"
          | "timeout"
          | "cancelled"
          | "underpaid"
          | "completed"
          | "failed"

      Invoice status.