@carsayo/types 1.1.868 → 1.1.869
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -249,3 +249,16 @@ export type Admin_RepairShop = RepairShop & {
|
|
|
249
249
|
businessBankAccount: FileInfo | null;
|
|
250
250
|
created_at: Date;
|
|
251
251
|
};
|
|
252
|
+
export interface AccidentReportCommission {
|
|
253
|
+
/** 사고접수 정보 */
|
|
254
|
+
accidentReport: AccidentReport;
|
|
255
|
+
/** 수수료 상태 */
|
|
256
|
+
state: string;
|
|
257
|
+
/** 수수료 금액 */
|
|
258
|
+
amount: number;
|
|
259
|
+
/** 계산시 적용된 요율 */
|
|
260
|
+
rate: number;
|
|
261
|
+
created_at: Date;
|
|
262
|
+
paid_at: Date | null;
|
|
263
|
+
canceled_at: Date | null;
|
|
264
|
+
}
|