Type alias Invoice

Invoice: HasTimes & Identifiable & {
    __typename?: "Invoice";
    createdAt: Scalars["DateTime"];
    id: Scalars["ID"];
    listingId?: Maybe<Scalars["String"]>;
    state?: Maybe<InvoiceState>;
    total?: Maybe<Scalars["PositiveFloat"]>;
    updatedAt?: Maybe<Scalars["DateTime"]>;
    userId?: Maybe<Scalars["String"]>;
}

A purchase invoice for an NFT. The invoice is created when an NFT is reserved using reserve, and updated when a payment is initiated with checkout

Generated using TypeDoc