ENUM

SourceType

The type of source the shelf content is coming from.

link GraphQL Schema definition

1enum SourceType {
2
3# The target source is from promotional campaign that is free.
4PROMOTION
5
6# The target source is from recommendations.
7RECOMMENDED
8
9# The target source is from a promotional campaign that is paid.
10SPONSORED
11
12# The target source is from a fallback candidate.
13POPULAR
14
15# The target source is from a boost promotional campaign.
16COMMUNITY_BOOST
17
18# The target source is unknown so we default to UNKNOWN.
19UNKNOWN_SOURCE_TYPE
20}