///
namespace MastodonEntity {
export type Report = {
id: string
action_taken: boolean
action_taken_at: string | null
category: Category
comment: string
forwarded: boolean
status_ids: Array | null
rule_ids: Array | null
target_account: Account
}
export type Category = 'spam' | 'violation' | 'other'
}