OBJECT

ObservationUsageResultItem

link GraphQL Schema definition

  • type ObservationUsageResultItem {
  • date: Date!
  • # Event count for the specified date.
  • eventCount: Int!
  • # Exceeded event count for the specified date
  • exceededEventCount: Int!
  • # Observation count for the specified date
  • observationCount: Int!
  • # Throttled count for the specified date
  • throttledCount: Int! @deprecated( reason: "Refer to exceededEventCount field!" )
  • # Usage count for the specified date
  • usageCount: Int! @deprecated( reason: "Refer to observationCount field!" )
  • }