OBJECT

PrimeBenefitStringSet

link GraphQL Schema definition

1type PrimeBenefitStringSet {
2
3# The name associated with the benefit
4title: String!
5
6# A brief sentence fragment that describes the benefit as a whole
7headline: String!
8
9# A supplemental sentence fragment that adds to the headline introduces the
10# benefit details
11subheadline: String!
12
13# List of strings enumerating the specifics of how a customer can use the benefit
14details: [String!]!
15
16}