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;
-
- namespace Discord.API.Rest
- {
- [JsonObject(MemberSerialization = MemberSerialization.OptIn)]
- internal class ModifyGuildRoleParams
- {
- [JsonProperty("name")]
- public Optional<string> Name { get; set; }
- [JsonProperty("permissions")]
- public Optional<string> Permissions { get; set; }
- [JsonProperty("color")]
- public Optional<uint> Color { get; set; }
- [JsonProperty("hoist")]
- public Optional<bool> Hoist { get; set; }
- [JsonProperty("icon")]
- public Optional<Image?> Icon { get; set; }
- [JsonProperty("unicode_emoji")]
- public Optional<string> Emoji { get; set; }
- [JsonProperty("mentionable")]
- public Optional<bool> Mentionable { get; set; }
- }
- }
|