You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
4 years ago
|
#pragma warning disable CS1591
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace Discord.API.Rest
|
||
|
{
|
||
|
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
|
||
|
internal class CreateGuildChannelParams
|
||
|
{
|
||
|
[JsonProperty("name")]
|
||
|
public string Name { get; }
|
||
|
[JsonProperty("type")]
|
||
|
public ChannelType Type { get; }
|
||
|
[JsonProperty("parent_id")]
|
||
|
public Optional<ulong?> CategoryId { get; set; }
|
||
|
[JsonProperty("position")]
|
||
|
public Optional<int> Position { get; set; }
|
||
|
|
||
|
//Text channels
|
||
|
[JsonProperty("topic")]
|
||
|
public Optional<string> Topic { get; set; }
|
||
|
[JsonProperty("nsfw")]
|
||
|
public Optional<bool> IsNsfw { get; set; }
|
||
|
|
||
|
//Voice channels
|
||
|
[JsonProperty("bitrate")]
|
||
|
public Optional<int> Bitrate { get; set; }
|
||
|
[JsonProperty("user_limit")]
|
||
|
public Optional<int?> UserLimit { get; set; }
|
||
|
|
||
|
public CreateGuildChannelParams(string name, ChannelType type)
|
||
|
{
|
||
|
Name = name;
|
||
|
Type = type;
|
||
|
}
|
||
|
}
|
||
|
}
|