OBJECT

ReportToSAndCountryReasons

A valid country and ToS reasons for a report.

link GraphQL Schema definition

1type ReportToSAndCountryReasons {
2
3# The countryCode of the country-specific reporting flow that applies to the user.
4# If null then there is no relevant country-specific reporting flow for the user.
5countryCode: String
6
7# Localized string that should be displayed to the user as a disclosure that their
8# report.
9# Falls under given legislation, and may be viewed by legal authorities.
10disclosureText: String
11
12# The list of report reasons that apply for the content type.
13toSAndCountryReasons: [ReportReason!]!
14
15}