OBJECT

ContractExpense

Contract Expenses

link GraphQL Schema definition

  • type ContractExpense {
  • # Contract Expense amount
  • amount: Float!
  • # Contract Expense code
  • code: String!
  • # Contract
  • contract: Contract!
  • # When the Contract Expense was created
  • createdAt: ISO8601DateTime!
  • # Contract Allocation Custom Payout Date
  • customPayoutDate: ISO8601DateTime
  • # Contract Expense description
  • description: String!
  • # Contract Expense's calculation basis (percent or amount)
  • expenseCalculationBasis: ExpenseCalculationBasisEnum
  • # Contract Expense's gst applies or free
  • gst: Boolean
  • # Contract Expense gst amount
  • gstAmount: Float!
  • # ID of the Contract Expense
  • id: ID!
  • # Contract Allocation's payout event type
  • payoutDateEvent: PayoutDateEventEnum
  • # Contract Expense percent
  • percent: Float!
  • # Contract Expense Total Amount (Amount + Gst Amount)
  • totalAmount: Float!
  • # When the Contract Expense was last updated
  • updatedAt: ISO8601DateTime!
  • }