OBJECT

InvoiceAccountingItemCostCenter

InvoiceAccountingItemCostCenter books a ClientCompanyCostCenter amount for an InvoiceAccountingItem.

link GraphQL Schema definition

  • type InvoiceAccountingItemCostCenter implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • rowId: UUID!
  • invoiceAccountingItemRowId: UUID!
  • clientCompanyCostCenterRowId: UUID!
  • number: String!
  • description: String!
  • currency: CurrencyCode!
  • amount: Float!
  • updatedAt: UpdatedTime
  • createdAt: CreatedTime
  • # Reads a single `InvoiceAccountingItem` that is related to this
  • # `InvoiceAccountingItemCostCenter`.
  • invoiceAccountingItemByInvoiceAccountingItemRowId: InvoiceAccountingItem!
  • # Reads a single `ClientCompanyCostCenter` that is related to this
  • # `InvoiceAccountingItemCostCenter`.
  • clientCompanyCostCenterByClientCompanyCostCenterRowId: ClientCompanyCostCenter!
  • }