OBJECT

BitsEvent

An event that captures a single bits transaction.

link GraphQL Schema definition

1type BitsEvent {
2
3# Amount of bits used.
4amount: Int!
5
6# Channel bits were used on.
7channel: User
8
9# Event ID.
10id: ID!
11
12# What type of event the bits were used on.
13type: BitsEventType!
14
15# Time the bits were used at.
16usedAt: Time!
17
18}