Table of Contents

Class MessagePinAuditLogData

Namespace
Discord.Rest
Assembly
Discord.Net.Rest.dll

Contains a piece of audit log data related to a pinned message.

public class MessagePinAuditLogData : IAuditLogData
Inheritance
MessagePinAuditLogData
Implements
Inherited Members

Properties

ChannelId

Gets the ID of the channel that the message was pinned from.

public ulong ChannelId { get; }

Property Value

ulong

A ulong representing the snowflake identifier for the channel that the message was pinned from.

MessageId

Gets the ID of the messages that was pinned.

public ulong MessageId { get; }

Property Value

ulong

A ulong representing the snowflake identifier for the messages that was pinned.

Target

Gets the user of the message that was pinned if available.

public IUser Target { get; }

Property Value

IUser

A user object representing the user that created the pinned message or null.

Remarks

Will be null if the user is a 'Deleted User#....' because Discord does send user data for deleted users.