From 9da3c660fab490fb34de8db8aadaf8ded46e0718 Mon Sep 17 00:00:00 2001 From: oz-k Date: Thu, 25 Nov 2021 16:25:54 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B3=B8=EC=9D=B8=EC=9D=B8=EC=A6=9D=20?= =?UTF-8?q?=EA=B2=B0=EA=B3=BC=EC=97=90=20birthday=20=ED=94=84=EB=A1=9C?= =?UTF-8?q?=ED=8D=BC=ED=8B=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/response/Certification.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/response/Certification.ts b/lib/response/Certification.ts index c056e2d..dce8733 100644 --- a/lib/response/Certification.ts +++ b/lib/response/Certification.ts @@ -8,6 +8,7 @@ class Certification extends ResponseBase { public name?: string; public gender?: string; public birth?: Date | number; + public birthday?: string; public foreigner?: boolean; public certified?: boolean; public certified_at?: Date | number; @@ -24,6 +25,7 @@ class Certification extends ResponseBase { name, gender, birth, + birthday, foreigner, certified, certified_at, @@ -38,6 +40,7 @@ class Certification extends ResponseBase { this.name = name; this.gender = gender; this.birth = this.timeToDate(birth); + this.birthday = birthday; this.foreigner = foreigner; this.certified = certified; this.certified_at = this.timeToDate(certified_at);