OBJECT

PrimePromotion

Metadata relevant to Prime copy or marketing that needs to be scheduled.

link GraphQL Schema definition

1type PrimePromotion {
2
3# externalURL is a string with the destination URL.
4externalURL: String
5
6# id is the unique identifier for the PrimePromotion.
7id: ID!
8
9# isExternalLink is boolean that indicates whether the text should be a link.
10isExternalLink: Boolean!
11
12# text is a string field containing the user visible text for a dynamic/changing
13# string.
14text: String!
15
16}