import type { NotificationTypeFilter } from "./NotificationTypeFilter"; import type { PaginationCursor } from "./PaginationCursor"; import type { PersonId } from "./PersonId"; /** * Get your inbox (replies, comment mentions, post mentions, and messages) */ export type ListNotifications = { type_?: NotificationTypeFilter; unread_only?: boolean; creator_id?: PersonId; page_cursor?: PaginationCursor; limit?: number; };