Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/response/Certification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -24,6 +25,7 @@ class Certification extends ResponseBase {
name,
gender,
birth,
birthday,
foreigner,
certified,
certified_at,
Expand All @@ -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);
Expand Down