o2o-negosium-original/negodata/front/src/api/generated/model/notificationData.ts
Mina Choi 1d111a031e [feat] negodata: 알림함 — 견적 마감 결과(낙찰/재생성/결렬) 자동 통지
- company.notifications 테이블 + NotificationType(SUCCESS/REGENERATED/FAILURE)
- 백엔드 알림 조회/읽음 API + close_and_decide 결과 분기마다 알림 생성
- 헤더 알림 벨(안읽음 배지) + 알림 페이지(읽음·딥링크)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-30 17:24:59 +09:00

23 lines
847 B
TypeScript

/**
* Generated by orval v7.21.0 🍺
* Do not edit manually.
* Negodata Api Server
* OpenAPI spec version: 0.1.0
*/
import type { NotificationType } from './notificationType';
import type { NotificationDataRefQtId } from './notificationDataRefQtId';
import type { NotificationDataRefSessionId } from './notificationDataRefSessionId';
import type { NotificationDataData } from './notificationDataData';
import type { NotificationDataReadAt } from './notificationDataReadAt';
import type { NotificationDataCreatedAt } from './notificationDataCreatedAt';
export interface NotificationData {
notification_id: string;
type: NotificationType;
ref_qt_id?: NotificationDataRefQtId;
ref_session_id?: NotificationDataRefSessionId;
data?: NotificationDataData;
read_at?: NotificationDataReadAt;
created_at?: NotificationDataCreatedAt;
}