/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { NotificationType } from './NotificationType'; import type { Priority } from './Priority'; import type { RepoBaseInfo } from './RepoBaseInfo'; import type { TargetType } from './TargetType'; import type { UserBaseInfo } from './UserBaseInfo'; import type { WorkspaceBaseInfo } from './WorkspaceBaseInfo'; export type ApiResponse_NotificationDetail = { data: { action_url?: string | null; actor?: (null | UserBaseInfo); body?: string | null; channel_id?: string | null; created_at: string; deleted_at?: string | null; dismissed_at?: string | null; id: string; issue_id?: string | null; message_id?: string | null; metadata: any; notification_type: NotificationType; priority: Priority; pull_request_id?: string | null; read_at?: string | null; repo?: (null | RepoBaseInfo); target_id?: string | null; target_type?: (null | TargetType); title: string; updated_at: string; user_id: string; workspace?: (null | WorkspaceBaseInfo); }; };