OBJECT

RadioContentPromotion

A Twitch Radio LinkFire Input Response for Content Promotion.

link GraphQL Schema definition

1type RadioContentPromotion {
2
3# Text on the redirect button.
4buttonText: String!
5
6# Icon for the media service having dark/light theme assets. Formats supported:
7# PNG, SVG. Default value is SVG.
8icon(format: RadioIconFormat): RadioIconThemeAssets!
9
10# IconURL for the media service. Formats supported: PNG, SVG. Default value is
11# SVG.
12iconURL(
13format: RadioIconFormat
14): String! @deprecated( reason: "Use 'icon' instead." )
15
16# Rank to order the icons.
17rank: Int!
18
19# Title of the service.
20title: String!
21
22# URL to redirect to the service.
23url: String!
24
25}