APIAuditLogChangeKeySnowflake

Represents a change where the key is a snowflake. Currently, the only known instance of this is returned when permissions for a command were updated (<insert name of object here>)

Signature

export type APIAuditLogChangeKeySnowflake = AuditLogChangeData<Snowflake, unknown>;

Private types

AuditLogChangeDataInterface
interface AuditLogChangeData<K extends string, D> {    key: K;    new_value?: D;    old_value?: D;}

Members

This export does not declare public properties or methods in the generated declaration file.