paymentTypes top-level property

List<PaymentType> paymentTypes
getter/setter pair

Implementation

List<PaymentType> paymentTypes = [
  PaymentType(
      paymentTypeId: "PtInvoicePayment",
      paymentTypeName: "Invoice Payment",
      isApplied: true,
      isPayable: false,
      accountCode: "11000",
      accountName: "Accounts Receivable"),
  PaymentType(
      paymentTypeId: "PtPrePayment",
      paymentTypeName: "Pre Payment - Expense",
      isApplied: true,
      isPayable: false,
      accountCode: "20000",
      accountName: "Accounts Payable"),
  PaymentType(
      paymentTypeId: "PtInvoicePayment",
      paymentTypeName: "Invoice Payment",
      isApplied: true,
      isPayable: false,
      accountCode: "20000",
      accountName: "Accounts Payable"),
  PaymentType(
      paymentTypeId: "PtPrePayment",
      paymentTypeName: "Pre Payment - Expense",
      isApplied: true,
      isPayable: false,
      accountCode: "11000",
      accountName: "Accounts Receivable"),
];