PaymentType
Represents a type of payment.
type PaymentType {
account: Account!
createdAt: DateTime!
createdBy: String
fee: PaymentTypeFee!
fundingType: PaymentFundingType!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
uniqueCode: String
}
Fields
PaymentType.account ● Account! non-null object
The account on which the payment funds will be transferred.
PaymentType.createdAt ● DateTime! non-null scalar
The date and time the record was created.
PaymentType.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
PaymentType.fee ● PaymentTypeFee! non-null object
Details about the fees that apply to the payment type.
PaymentType.fundingType ● PaymentFundingType! non-null enum
The funding type for the payment.
PaymentType.id ● ID! non-null scalar
The unique identifier of the payment type.
PaymentType.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
PaymentType.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
PaymentType.name ● String! non-null scalar
The name of the payment type.
PaymentType.uniqueCode ● String scalar
The unique code of the payment type. Optional.
Member Of
Payment object