OBJECT

PlatformEventSetting

link GraphQL Schema definition

1type PlatformEventSetting {
2
3# Whether the setting is enabled for the given platform.
4isEnabled: Boolean!
5
6# The name of the platform. ("email", "push", etc..).
7platformName: String!
8
9# The exact state of the setting. ("on", "off", "friends_only", etc).
10settingState: String!
11
12}