Skip to content

Commit

Permalink
Sync our Json serializer context with our model classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Apr 26, 2024
1 parent 541e98e commit 7ed13a6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Source/ZoomNet/Json/ZoomNetJsonSerializerContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ namespace ZoomNet.Json
[JsonSerializable(typeof(ZoomNet.Models.ChatbotMessage.ChatbotSection), TypeInfoPropertyName = "ChatbotMessageChatbotSection")]
[JsonSerializable(typeof(ZoomNet.Models.ChatbotMessageInformation))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannel))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelAddMemberPermissions))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelMember))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelMentionAllPermissions))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelPostingPermissions))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelRole))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelSettings))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelType))]
Expand Down Expand Up @@ -356,7 +359,10 @@ namespace ZoomNet.Json
[JsonSerializable(typeof(ZoomNet.Models.ChatbotMessage.ChatbotSection[]), TypeInfoPropertyName = "ChatbotMessageChatbotSectionArray")]
[JsonSerializable(typeof(ZoomNet.Models.ChatbotMessageInformation[]))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannel[]))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelAddMemberPermissions[]))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelMember[]))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelMentionAllPermissions[]))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelPostingPermissions[]))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelRole[]))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelSettings[]))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelType[]))]
Expand Down Expand Up @@ -623,6 +629,9 @@ namespace ZoomNet.Json
[JsonSerializable(typeof(ZoomNet.Models.CallLogType?))]
[JsonSerializable(typeof(ZoomNet.Models.ChatbotMessage.ChatbotActionStyle?), TypeInfoPropertyName = "ChatbotMessageChatbotActionStyleNullable")]
[JsonSerializable(typeof(ZoomNet.Models.ChatbotMessage.ChatbotDropdownStaticSource?), TypeInfoPropertyName = "ChatbotMessageChatbotDropdownStaticSourceNullable")]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelAddMemberPermissions?))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelMentionAllPermissions?))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelPostingPermissions?))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelRole?))]
[JsonSerializable(typeof(ZoomNet.Models.ChatChannelType?))]
[JsonSerializable(typeof(ZoomNet.Models.ChatMentionType?))]
Expand Down

0 comments on commit 7ed13a6

Please sign in to comment.