ENUM

AggregateKey

Indicates what has been aggregated.

link GraphQL Schema definition

  • enum AggregateKey {
  • # The number of accounts with a given account status.
  • ACCOUNT_STATUS_COUNTS
  • # The average revenue per user for one billing period.
  • ARPU
  • # The average revenue per user for a year. This factors in varying service period
  • # durations on accounts.
  • ARPU_YEARLY
  • # The number of active customers.
  • ACTIVE_CUSTOMER_COUNT
  • # The number of inactive customers.
  • INACTIVE_CUSTOMER_COUNT
  • # The number customer accounts that are delinquent.
  • DELINQUENT_CUSTOMER_COUNT
  • # The percentage of active customers who have delinquent accounts.
  • DELINQUENCY_PERCENTAGE
  • # The total current recurring revenue for one billing period.
  • RECURRING_REVENUE
  • # The total current recurring discounts for one billing period.
  • RECURRING_DISCOUNTS
  • # The total current recurring revenue for a year. This factors in varying service
  • # period durations on accounts.
  • RECURRING_REVENUE_YEARLY
  • # The total current recurring discounts for a year. This factors in varying
  • # service period durations on accounts.
  • RECURRING_DISCOUNTS_YEARLY
  • # The total debits for the day excluding adjustments.
  • DEBITS_WITHOUT_ADJUSTMENTS_TODAY
  • # The total debits from adjustments for the day.
  • DEBIT_ADJUSTMENTS_TODAY
  • # The total discounts/credits for the day excluding adjustments.
  • DISCOUNTS_WITHOUT_ADJUSTMENTS_TODAY
  • # The total discounts/credits from adjustments for the day.
  • DISCOUNT_ADJUSTMENTS_TODAY
  • # The total payments for the day.
  • PAYMENTS_TODAY
  • # The total current amount due on invoices.
  • BALANCE_DUE
  • }