marketing.graphql 613 B

123456789101112131415161718
  1. # Represents a set of UTM parameters.
  2. type UTMParameters {
  3. # The name of a marketing campaign.
  4. campaign: String
  5. # Identifies specific content in a marketing campaign.
  6. # Used to differentiate between similar content or links in a marketing campaign to determine which is the most effective.
  7. content: String
  8. # The medium of a marketing campaign, such as a banner or email newsletter.
  9. medium: String
  10. # The source of traffic to the merchant's store, such as Google or an email newsletter.
  11. source: String
  12. # Paid search terms used by a marketing campaign.
  13. term: String
  14. }