OBJECT

CommunityPointsMultiplier

A multiplier affecting the rate of community points earned for a user in a channel.

link GraphQL Schema definition

1type CommunityPointsMultiplier {
2
3# The multiplying factor being applied.
4# Multipliers start at a base of 1.0, and are additive.
5# Two multipliers of [0.2] and [0.3] will give a final multiplier of 1.5x.
6factor: Float!
7
8# The reason that the multiplier is being applied.
9reasonCode: CommunityPointsMultiplierReason!
10
11}