Skip to main content

PaymentLineItem

Represents an individual line item in a payment.

type PaymentLineItem {
amount: Float!
createdAt: DateTime!
createdBy: String
exportedAt: DateTime
id: ID!
isCreditCardFee: Boolean!
isInitialPayment: Boolean!
lastModifiedAt: DateTime!
lastModifiedBy: String
payableItem: PayableItem
}

Fields

PaymentLineItem.amount ● Float! non-null scalar

The amount of the payment line item.

PaymentLineItem.createdAt ● DateTime! non-null scalar

The date and time the record was created.

PaymentLineItem.createdBy ● String scalar

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

PaymentLineItem.exportedAt ● DateTime scalar

The date and time the payment line item was exported. Optional.

PaymentLineItem.id ● ID! non-null scalar

The unique identifier of the payment line item.

PaymentLineItem.isCreditCardFee ● Boolean! non-null scalar

A flag that indicates whether the payment line item represents the fee associated with a credit card payment.

PaymentLineItem.isInitialPayment ● Boolean! non-null scalar

A flag that indicates whether the payment line item represents the initial payment against the associated payable item.

PaymentLineItem.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

PaymentLineItem.lastModifiedBy ● String scalar

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

PaymentLineItem.payableItem ● PayableItem object

The payable item that this payment line item pays for. Optional.

Member Of

Payment object