OBJECT

Subscription

link GraphQL Schema definition

1type Subscription {
2
3id: ID!
4
5organizationId: ID!
6
7objectType: SubscriptionObjectType!
8
9frequency: SubscriptionFrequency!
10
11createdDateTime: DateTime
12
13modifiedDateTime: DateTime
14
15isActive: Boolean!
16
17# The ID of the object on which this subscription is set,
18# such as a watchlist ID.
19targetId: ID!
20
21# Scheduled time of day
22scheduledTime: Time
23
24# Time zone of the scheduled time
25scheduledTimeZone: String
26
27# Scheduled day of the week
28scheduledDay: DayOfWeek
29
30jsondata: JSONData
31
32contact: SubscriptionContact!
33
34unsubscribeHash: String
35
36}