We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5af841b commit 0a119d3Copy full SHA for 0a119d3
src/apis/draftLetters.ts
@@ -2,18 +2,14 @@ import client from './client';
2
3
export interface DraftLetter {
4
letterId: number;
5
- writerId: number;
+ matchingId: number;
6
receiverId: number;
7
parentLetterId: number;
8
- zipCode: string;
9
title: string;
10
content: string;
11
category: string;
12
paperType: string;
13
fontType: string;
14
- deliveryStartedAt: string;
15
- deliveryCompletedAt: string;
16
- matched: boolean;
17
}
18
19
export const getDraftLetters = async (): Promise<DraftLetter[]> => {
0 commit comments