OBJECT

ManualChannelChallenge

A custom challenge created by the broadcaster.

link GraphQL Schema definition

1type ManualChannelChallenge implements ChannelChallenge {
2
3# Total bits amount contributed.
4bitsAmount: Int!
5
6# Time when challenge was created.
7createdAt: Time!
8
9# User that created the challenge.
10createdBy: User
11
12# Amount of seconds from when the challenge starts to when it ends.
13durationSeconds: Int!
14
15# ID of challenge.
16id: ID!
17
18# User who owns this challenge. The challenge will appear on their channel.
19ownedBy: User
20
21# Amount of milliseconds before the challenge times out.
22# 0 when the challenge has timed out.
23remainingDurationMilliseconds: Int!
24
25# The authenticated user's relationship with this challenge.
26# Main use case is to connect the user to a challenge to allow bit contributions.
27# Null if un-authenticated user is making this query.
28self: ChannelChallengeSelfEdge
29
30# The status of the challenge.
31status: ChannelChallengeStatus!
32
33# Title of the challenge.
34title: String!
35
36# Time when challenge was updated.
37updatedAt: Time!
38
39}

link Required by

This element is not required by anyone