Class DiscordCreateDmGroup
Represents a discord Create DM group parameter model. Docs: https://discord.com/developers/docs/resources/user#create-group-dm
Inheritance
System.Object
DiscordCreateDmGroup
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Color_Chan.Discord.Core.Common.API.Params.User
Assembly: Color-Chan.Discord.Core.dll
Syntax
public class DiscordCreateDmGroup
Properties
| Improve this Doc View SourceAccessTokens
access tokens of users that have granted your app the gdm.join scope.
Declaration
[JsonPropertyName("access_tokens")]
public IEnumerable<string> AccessTokens { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.String> |
NickNames
a dictionary of user ids to their respective nicknames.
Declaration
[JsonPropertyName("nicks")]
public Dictionary<ulong, string> NickNames { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.UInt64, System.String> |