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