Skip to content

Commit

Permalink
Customer 객체에 발행사/발급사 정보 필드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
XiNiHa committed Jan 22, 2024
1 parent 3987308 commit 3453324
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/response/Customer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ class Customer extends ResponseBase {
public card_name: string;
public card_code?: CardCodeEnum;
public card_number?: string;
public card_issuer_code?: string;
public card_publisher_code?: string;
public card_issuer_name?: string;
public card_publisher_name?: string;
public customer_name?: string;
public customer_tel?: string;
public customer_email?: string;
Expand All @@ -20,6 +24,10 @@ class Customer extends ResponseBase {
card_name,
card_code,
card_number,
card_issuer_code,
card_publisher_code,
card_issuer_name,
card_publisher_name,
customer_name,
customer_tel,
customer_email,
Expand All @@ -33,6 +41,10 @@ class Customer extends ResponseBase {
this.card_name = card_name;
this.card_code = card_code;
this.card_number = card_number;
this.card_issuer_code = card_issuer_code;
this.card_publisher_code = card_publisher_code;
this.card_issuer_name = card_issuer_name;
this.card_publisher_name = card_publisher_name;
this.customer_name = customer_name;
this.customer_tel = customer_tel;
this.customer_email = customer_email;
Expand Down

0 comments on commit 3453324

Please sign in to comment.