OBJECT

MultiplayerAdOffer

A multiplayer ad offer is an ad offer.

link GraphQL Schema definition

1type MultiplayerAdOffer {
2
3# The duration of the ad in seconds.
4adDurationSeconds: Int!
5
6# The name of the brand associated with the ad.
7brandName: String
8
9# The message to be display to the broadcaster.
10broadcasterMessage: String
11
12# How much preroll free time will be credited to the creator for running this ad
13# offer.
14creditDurationSeconds: Int
15
16# When the offer expires.
17expiresAt: Time!
18
19# The offer's unique identifier.
20id: ID!
21
22# If offer has reward, the max rate for reward. (e.g. vote per bits for polling).
23rewardsMaxRate: Float
24
25# If offer has reward, the min rate for reward. (e.g. vote per bits for polling).
26rewardsMinRate: Float
27
28}