Class DiscordApplicationData
Represents a Application Structure API model. Docs: https://discord.com/developers/docs/resources/application#application-object-application-structure
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Color_Chan.Discord.Core.Common.API.DataModels
Assembly: Color-Chan.Discord.Core.dll
Syntax
public class DiscordApplicationData : IEquatable<DiscordApplicationData>
Properties
| Improve this Doc View SourceCoverImage
Gets the ID of the embed's image asset.
Declaration
[JsonPropertyName("cover_image")]
public string CoverImage { get; set; }
Property Value
Type | Description |
---|---|
String |
Description
The description of the app.
Declaration
[JsonPropertyName("description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
String |
Icon
The icon hash of the app.
Declaration
[JsonPropertyName("icon")]
public string Icon { get; set; }
Property Value
Type | Description |
---|---|
String |
Id
The id of the app.
Declaration
[JsonPropertyName("id")]
public ulong Id { get; set; }
Property Value
Type | Description |
---|---|
System.UInt64 |
Name
The name of the app.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |