Type alias ChannelUserPermissionPayload

ChannelUserPermissionPayload: {
    channelId: string;
    createdAt: string;
    permissions: Record<string, boolean>;
    updatedAt?: string;
    userId: string;
}

Type declaration

  • channelId: string

    The ID of the channel

  • createdAt: string

    The ISO 8601 timestamp that the permission override was created at

  • permissions: Record<string, boolean>
  • Optional updatedAt?: string

    The ISO 8601 timestamp that the permission override was updated at, if relevant

  • userId: string

    The ID of the user

Generated using TypeDoc