Skip to main content

Invoice

An invoice.

type Invoice {
contact: Contact!
createdAt: DateTime!
createdBy: String
currency: Currency!
eventId: ID!
exportedAt: DateTime
id: ID!
issuedAt: DateTime!
lastModifiedAt: DateTime!
lastModifiedBy: String
lineItems: [InvoiceLineItem!]!
number: String!
purchaseOrderNumber: String
recipient: InvoiceRecipient!
status: InvoiceStatus!
totalAmount: Float!
transactionType: InvoiceFinancialTransactionType!
}

Fields

Invoice.contact ● Contact! non-null object

The contact the invoice is issued to.

Invoice.createdAt ● DateTime! non-null scalar

The date and time the record was created.

Invoice.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

Invoice.currency ● Currency! non-null object

The currency of the invoice.

Invoice.eventId ● ID! non-null scalar

The identifier of the event the invoice is associated with.

Invoice.exportedAt ● DateTime scalar

The date and time the invoice was exported. Optional.

Invoice.id ● ID! non-null scalar

The unique identifier of the invoice.

Invoice.issuedAt ● DateTime! non-null scalar

The date and time at which the invoice was issued.

Invoice.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

Invoice.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

Invoice.lineItems ● [InvoiceLineItem!]! non-null object

The line items associated with the invoice.

Invoice.number ● String! non-null scalar

The number of the invoice.

Invoice.purchaseOrderNumber ● String scalar

UTF-8 string value that represents the purchase order number associated with the invoice. Optional.

Invoice.recipient ● InvoiceRecipient! non-null object

The recipient of the invoice.

Invoice.status ● InvoiceStatus! non-null enum

The status of the invoice.

Invoice.totalAmount ● Float! non-null scalar

The total amount of the invoice.

Invoice.transactionType ● InvoiceFinancialTransactionType! non-null enum

The type of transaction associated with the invoice.

Returned By

invoices query

Member Of

CeContactStore object ● Event object ● MembershipContactStore object