@@ -62,52 +62,52 @@ fun main() {
6262
6363 val magicbellUserClient: MagicbellUserClient = MagicbellUserClient (config);
6464
65- Images images = Images .builder()
65+ val images: Images = Images .builder()
6666 .emptyInboxUrl(" emptyInboxUrl" )
6767 .build();
6868
69- Banner banner = Banner .builder()
69+ val banner: Banner = Banner .builder()
7070 .backgroundColor(" backgroundColor" )
7171 .backgroundOpacity(8 .96D)
7272 .fontSize(" fontSize" )
7373 .textColor(" textColor" )
7474 .build();
7575
76- Dialog dialog = Dialog .builder()
76+ val dialog: Dialog = Dialog .builder()
7777 .accentColor(" accentColor" )
7878 .backgroundColor(" backgroundColor" )
7979 .textColor(" textColor" )
8080 .build();
8181
82- Footer footer = Footer .builder()
82+ val footer: Footer = Footer .builder()
8383 .backgroundColor(" backgroundColor" )
8484 .borderRadius(" borderRadius" )
8585 .fontSize(" fontSize" )
8686 .textColor(" textColor" )
8787 .build();
8888
89- Header header = Header .builder()
89+ val header: Header = Header .builder()
9090 .backgroundColor(" backgroundColor" )
9191 .borderRadius(" borderRadius" )
9292 .fontFamily(" fontFamily" )
9393 .fontSize(" fontSize" )
9494 .textColor(" textColor" )
9595 .build();
9696
97- Icon icon = Icon .builder()
97+ val icon: Icon = Icon .builder()
9898 .borderColor(" borderColor" )
9999 .width(" width" )
100100 .build();
101101
102- DefaultHover defaultHover = DefaultHover .builder()
102+ val defaultHover: DefaultHover = DefaultHover .builder()
103103 .backgroundColor(" backgroundColor" )
104104 .build();
105105
106- DefaultState defaultState = DefaultState .builder()
106+ val defaultState: DefaultState = DefaultState .builder()
107107 .color(" color" )
108108 .build();
109109
110- Default_ default_ = Default_ .builder()
110+ val default_: Default_ = Default_ .builder()
111111 .backgroundColor(" backgroundColor" )
112112 .borderRadius(" borderRadius" )
113113 .fontFamily(" fontFamily" )
@@ -118,47 +118,47 @@ fun main() {
118118 .textColor(" textColor" )
119119 .build();
120120
121- UnreadHover unreadHover = UnreadHover .builder()
121+ val unreadHover: UnreadHover = UnreadHover .builder()
122122 .backgroundColor(" backgroundColor" )
123123 .build();
124124
125- UnreadState unreadState = UnreadState .builder()
125+ val unreadState: UnreadState = UnreadState .builder()
126126 .color(" color" )
127127 .build();
128128
129- Unread unread = Unread .builder()
129+ val unread: Unread = Unread .builder()
130130 .backgroundColor(" backgroundColor" )
131131 .hover(unreadHover)
132132 .state(unreadState)
133133 .textColor(" textColor" )
134134 .build();
135135
136- UnseenHover unseenHover = UnseenHover .builder()
136+ val unseenHover: UnseenHover = UnseenHover .builder()
137137 .backgroundColor(" backgroundColor" )
138138 .build();
139139
140- UnseenState unseenState = UnseenState .builder()
140+ val unseenState: UnseenState = UnseenState .builder()
141141 .color(" color" )
142142 .build();
143143
144- Unseen unseen = Unseen .builder()
144+ val unseen: Unseen = Unseen .builder()
145145 .backgroundColor(" backgroundColor" )
146146 .hover(unseenHover)
147147 .state(unseenState)
148148 .textColor(" textColor" )
149149 .build();
150150
151- Notification notification = Notification .builder()
151+ val notification: Notification = Notification .builder()
152152 .default_(default_)
153153 .unread(unread)
154154 .unseen(unseen)
155155 .build();
156156
157- UnseenBadge unseenBadge = UnseenBadge .builder()
157+ val unseenBadge: UnseenBadge = UnseenBadge .builder()
158158 .backgroundColor(" backgroundColor" )
159159 .build();
160160
161- Theme theme = Theme .builder()
161+ val theme: Theme = Theme .builder()
162162 .banner(banner)
163163 .dialog(dialog)
164164 .footer(footer)
@@ -168,7 +168,7 @@ fun main() {
168168 .unseenBadge(unseenBadge)
169169 .build();
170170
171- InboxConfig inboxConfig = InboxConfig .builder()
171+ val inboxConfig: InboxConfig = InboxConfig .builder()
172172 .images(images)
173173 .locale(" locale" )
174174 .theme(theme)
@@ -246,7 +246,7 @@ fun main() {
246246
247247 val magicbellUserClient: MagicbellUserClient = MagicbellUserClient (config);
248248
249- AuthedUser authedUser = AuthedUser .builder()
249+ val authedUser: AuthedUser = AuthedUser .builder()
250250 .accessToken(" access_token" )
251251 .expiresIn(5L )
252252 .id(" id" )
@@ -255,23 +255,23 @@ fun main() {
255255 .tokenType(" token_type" )
256256 .build();
257257
258- Enterprise enterprise = Enterprise .builder()
258+ val enterprise: Enterprise = Enterprise .builder()
259259 .id(" id" )
260260 .name(" name" )
261261 .build();
262262
263- IncomingWebhook incomingWebhook = IncomingWebhook .builder()
263+ val incomingWebhook: IncomingWebhook = IncomingWebhook .builder()
264264 .channel(" channel" )
265265 .configurationUrl(" configuration_url" )
266266 .url(" url" )
267267 .build();
268268
269- Team team = Team .builder()
269+ val team: Team = Team .builder()
270270 .id(" id" )
271271 .name(" name" )
272272 .build();
273273
274- SlackInstallation slackInstallation = SlackInstallation .builder()
274+ val slackInstallation: SlackInstallation = SlackInstallation .builder()
275275 .accessToken(" access_token" )
276276 .appId(" app_id" )
277277 .authedUser(authedUser)
@@ -325,7 +325,7 @@ fun main() {
325325
326326 val magicbellUserClient: MagicbellUserClient = MagicbellUserClient (config);
327327
328- SlackFinishInstallResponse slackFinishInstallResponse = SlackFinishInstallResponse .builder()
328+ val slackFinishInstallResponse: SlackFinishInstallResponse = SlackFinishInstallResponse .builder()
329329 .appId(" app_id" )
330330 .code(" code" )
331331 .redirectUrl(" redirect_url" )
@@ -371,9 +371,9 @@ fun main() {
371371
372372 val magicbellUserClient: MagicbellUserClient = MagicbellUserClient (config);
373373
374- List <String > extraScopes = Arrays .asList(" extra_scopes" );
374+ val extraScopes : List <String > = Arrays .asList(" extra_scopes" );
375375
376- SlackStartInstall slackStartInstall = SlackStartInstall .builder()
376+ val slackStartInstall: SlackStartInstall = SlackStartInstall .builder()
377377 .appId(" app_id" )
378378 .authUrl(" auth_url" )
379379 .extraScopes(extraScopes)
@@ -417,7 +417,7 @@ fun main() {
417417
418418 val magicbellUserClient: MagicbellUserClient = MagicbellUserClient (config);
419419
420- TemplatesInstallation templatesInstallation = TemplatesInstallation .builder()
420+ val templatesInstallation: TemplatesInstallation = TemplatesInstallation .builder()
421421 .category(" category" )
422422 .channel(" channel" )
423423 .text(" text" )
@@ -461,12 +461,12 @@ fun main() {
461461
462462 val magicbellUserClient: MagicbellUserClient = MagicbellUserClient (config);
463463
464- Keys keys = Keys .builder()
464+ val keys: Keys = Keys .builder()
465465 .auth(" auth" )
466466 .p256dh(" p256dh" )
467467 .build();
468468
469- WebPushToken webPushToken = WebPushToken .builder()
469+ val webPushToken: WebPushToken = WebPushToken .builder()
470470 .endpoint(" endpoint" )
471471 .keys(keys)
472472 .build();
0 commit comments