Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Models/ChannelType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public abstract class ChannelTypeRequestBase
public bool? PushNotifications { get; set; }
public string Blocklist { get; set; }
public ModerationBehaviour? BlocklistBehavior { get; set; }
public bool? CountMessages { get; set; }

[Obsolete("Use V2 Permissions APIs instead. " +
"See https://getstream.io/chat/docs/dotnet-csharp/migrating_from_legacy/?language=csharp")]
Expand Down Expand Up @@ -103,6 +104,7 @@ public abstract class ChannelTypeResponseBase : ApiResponse
public bool? PushNotifications { get; set; }
public string Blocklist { get; set; }
public ModerationBehaviour? BlocklistBehavior { get; set; }
public bool? CountMessages { get; set; }

[Obsolete("Use V2 Permissions APIs instead. " +
"See https://getstream.io/chat/docs/dotnet-csharp/migrating_from_legacy/?language=csharp")]
Expand Down
Loading