-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAppResponseFields.java
More file actions
200 lines (143 loc) · 5.22 KB
/
AppResponseFields.java
File metadata and controls
200 lines (143 loc) · 5.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
* ========================================================================
* WARNING: GENERATED CODE -- DO NOT EDIT!
* ========================================================================
*
* This file was auto-generated by GetStream internal OpenAPI
*
* Any modifications to this file will be lost upon regeneration.
* To make changes, please modify the source templates and regenerate.
*
* ========================================================================
*/
package io.getstream.models;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Date;
import java.util.List;
import java.util.Map;
import org.jetbrains.annotations.Nullable;
@lombok.Data
@lombok.Builder
@lombok.NoArgsConstructor
@lombok.AllArgsConstructor
public class AppResponseFields {
@JsonProperty("allow_multi_user_devices")
private Boolean allowMultiUserDevices;
@JsonProperty("async_url_enrich_enabled")
private Boolean asyncUrlEnrichEnabled;
@JsonProperty("auto_translation_enabled")
private Boolean autoTranslationEnabled;
@JsonProperty("campaign_enabled")
private Boolean campaignEnabled;
@JsonProperty("cdn_expiration_seconds")
private Integer cdnExpirationSeconds;
@JsonProperty("custom_action_handler_url")
private String customActionHandlerUrl;
@JsonProperty("disable_auth_checks")
private Boolean disableAuthChecks;
@JsonProperty("disable_permissions_checks")
private Boolean disablePermissionsChecks;
@JsonProperty("enforce_unique_usernames")
private String enforceUniqueUsernames;
@JsonProperty("guest_user_creation_disabled")
private Boolean guestUserCreationDisabled;
@JsonProperty("id")
private Integer id;
@JsonProperty("image_moderation_enabled")
private Boolean imageModerationEnabled;
@JsonProperty("max_aggregated_activities_length")
private Integer maxAggregatedActivitiesLength;
@JsonProperty("moderation_audio_call_moderation_enabled")
private Boolean moderationAudioCallModerationEnabled;
@JsonProperty("moderation_enabled")
private Boolean moderationEnabled;
@JsonProperty("moderation_llm_configurability_enabled")
private Boolean moderationLlmConfigurabilityEnabled;
@JsonProperty("moderation_multitenant_blocklist_enabled")
private Boolean moderationMultitenantBlocklistEnabled;
@JsonProperty("moderation_video_call_moderation_enabled")
private Boolean moderationVideoCallModerationEnabled;
@JsonProperty("moderation_webhook_url")
private String moderationWebhookUrl;
@JsonProperty("multi_tenant_enabled")
private Boolean multiTenantEnabled;
@JsonProperty("name")
private String name;
@JsonProperty("organization")
private String organization;
@JsonProperty("permission_version")
private String permissionVersion;
@JsonProperty("placement")
private String placement;
@JsonProperty("reminders_interval")
private Integer remindersInterval;
@JsonProperty("sns_key")
private String snsKey;
@JsonProperty("sns_secret")
private String snsSecret;
@JsonProperty("sns_topic_arn")
private String snsTopicArn;
@JsonProperty("sqs_key")
private String sqsKey;
@JsonProperty("sqs_secret")
private String sqsSecret;
@JsonProperty("sqs_url")
private String sqsUrl;
@JsonProperty("suspended")
private Boolean suspended;
@JsonProperty("suspended_explanation")
private String suspendedExplanation;
@JsonProperty("use_hook_v2")
private Boolean useHookV2;
@JsonProperty("user_response_time_enabled")
private Boolean userResponseTimeEnabled;
@JsonProperty("webhook_url")
private String webhookUrl;
@JsonProperty("event_hooks")
private List<EventHook> eventHooks;
@JsonProperty("user_search_disallowed_roles")
private List<String> userSearchDisallowedRoles;
@JsonProperty("webhook_events")
private List<String> webhookEvents;
@JsonProperty("call_types")
private Map<String, CallType> callTypes;
@JsonProperty("channel_configs")
private Map<String, ChannelConfig> channelConfigs;
@JsonProperty("file_upload_config")
private FileUploadConfig fileUploadConfig;
@JsonProperty("grants")
private Map<String, List<String>> grants;
@JsonProperty("image_upload_config")
private FileUploadConfig imageUploadConfig;
@JsonProperty("policies")
private Map<String, List<Policy>> policies;
@JsonProperty("push_notifications")
private PushNotificationFields pushNotifications;
@Nullable
@JsonProperty("before_message_send_hook_url")
private String beforeMessageSendHookUrl;
@Nullable
@JsonProperty("moderation_s3_image_access_role_arn")
private String moderationS3ImageAccessRoleArn;
@Nullable
@JsonProperty("revoke_tokens_issued_before")
private Date revokeTokensIssuedBefore;
@Nullable
@JsonProperty("allowed_flag_reasons")
private List<String> allowedFlagReasons;
@Nullable
@JsonProperty("geofences")
private List<GeofenceResponse> geofences;
@Nullable
@JsonProperty("image_moderation_labels")
private List<String> imageModerationLabels;
@Nullable
@JsonProperty("activity_metrics_config")
private Map<String, Integer> activityMetricsConfig;
@Nullable
@JsonProperty("datadog_info")
private DataDogInfo datadogInfo;
@Nullable
@JsonProperty("moderation_dashboard_preferences")
private ModerationDashboardPreferences moderationDashboardPreferences;
}