We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d7652b commit b3847f0Copy full SHA for b3847f0
1 file changed
src/models/message.ts
@@ -38,6 +38,7 @@ export type MessageParameter = {
38
kakaoOptions?: kakaoOptionRequest;
39
country?: string;
40
customFields?: Record<string, string>;
41
+ replacements?: Array<object>;
42
};
43
44
/**
@@ -113,6 +114,7 @@ export class Message {
113
114
* 메시지 로그
115
*/
116
log?: Array<object>;
117
118
119
120
* 메시지 상태 코드
@@ -139,5 +141,6 @@ export class Message {
139
141
this.kakaoOptions = new KakaoOption(parameter.kakaoOptions);
140
142
}
143
this.customFields = parameter.customFields;
144
+ this.replacements = parameter.replacements;
145
146
0 commit comments