OBJECT

UsageLineItem

A line item of usage for a Tenant.

link GraphQL Schema definition

  • type UsageLineItem {
  • # The billed usage (usage * weight = billedUsage).
  • billedUsage: Float!
  • # The product that had usage.
  • product: String!
  • # The usage amount.
  • usage: Float!
  • # The usage type.
  • usageType: String!
  • # The weight to apply to the usage.
  • weight: Float!
  • }