Table of Contents

Class ModifyGuildChannelProperties

Namespace
Kook
Assembly
Kook.Net.Core.dll

Properties that are used to modify an IGuildChannel with the specified properties.

public class ModifyGuildChannelProperties
Inheritance
ModifyGuildChannelProperties
Derived
Inherited Members

Properties

CategoryId

Gets or sets the category ID for this channel.

public ulong? CategoryId { get; set; }

Property Value

ulong?

Remarks

Setting this value to a category's identifier will change this channel's parent to the specified channel; setting this value to 0 will detach this channel from its parent if one is set; if this is null, the parent of this channel will not be modified.

Name

Gets or sets the channel to this name to be modified.

public string? Name { get; set; }

Property Value

string

Remarks

This property defines the new name for this channel; if this is null, the name will not be modified.

Position

Moves the channel to the following position. This property is one-based.

public int? Position { get; set; }

Property Value

int?

Remarks

If this is null, the position will not be modified.

See Also