|
| 1 | +/* |
| 2 | + * ======================================================================== |
| 3 | + * WARNING: GENERATED CODE -- DO NOT EDIT! |
| 4 | + * ======================================================================== |
| 5 | + * |
| 6 | + * This file was auto-generated by GetStream internal OpenAPI |
| 7 | + * |
| 8 | + * Any modifications to this file will be lost upon regeneration. |
| 9 | + * To make changes, please modify the source templates and regenerate. |
| 10 | + * |
| 11 | + * ======================================================================== |
| 12 | + */ |
| 13 | +package io.getstream.models; |
| 14 | + |
| 15 | +import com.fasterxml.jackson.annotation.JsonProperty; |
| 16 | +import org.jetbrains.annotations.Nullable; |
| 17 | + |
| 18 | +@lombok.Data |
| 19 | +@lombok.Builder |
| 20 | +@lombok.NoArgsConstructor |
| 21 | +@lombok.AllArgsConstructor |
| 22 | +public class ChatPreferences { |
| 23 | + |
| 24 | + @Nullable |
| 25 | + @JsonProperty("channel_mentions") |
| 26 | + private String channelMentions; |
| 27 | + |
| 28 | + @Nullable |
| 29 | + @JsonProperty("default_preference") |
| 30 | + private String defaultPreference; |
| 31 | + |
| 32 | + @Nullable |
| 33 | + @JsonProperty("direct_mentions") |
| 34 | + private String directMentions; |
| 35 | + |
| 36 | + @Nullable |
| 37 | + @JsonProperty("distinct_channel_messages") |
| 38 | + private String distinctChannelMessages; |
| 39 | + |
| 40 | + @Nullable |
| 41 | + @JsonProperty("group_mentions") |
| 42 | + private String groupMentions; |
| 43 | + |
| 44 | + @Nullable |
| 45 | + @JsonProperty("here_mentions") |
| 46 | + private String hereMentions; |
| 47 | + |
| 48 | + @Nullable |
| 49 | + @JsonProperty("role_mentions") |
| 50 | + private String roleMentions; |
| 51 | + |
| 52 | + @Nullable |
| 53 | + @JsonProperty("thread_replies") |
| 54 | + private String threadReplies; |
| 55 | +} |
0 commit comments