You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Newtonsoft.Json;
- using System.Collections.Generic;
-
- namespace Discord.API.Rest
- {
- internal class ModifyThreadParams
- {
- [JsonProperty("name")]
- public Optional<string> Name { get; set; }
-
- [JsonProperty("archived")]
- public Optional<bool> Archived { get; set; }
-
- [JsonProperty("auto_archive_duration")]
- public Optional<ThreadArchiveDuration> AutoArchiveDuration { get; set; }
-
- [JsonProperty("locked")]
- public Optional<bool> Locked { get; set; }
-
- [JsonProperty("rate_limit_per_user")]
- public Optional<int> Slowmode { get; set; }
-
- [JsonProperty("applied_tags")]
- public Optional<IEnumerable<ulong>> AppliedTags { get; set; }
-
- [JsonProperty("flags")]
- public Optional<ChannelFlags> Flags { get; set; }
- }
- }
|