Skip to content

Payment dto 누락된 프로퍼티 추가 #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
14 changes: 14 additions & 0 deletions src/main/java/com/siot/IamportRestClient/response/Payment.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ public class Payment {
@SerializedName("pg_tid")
String pg_tid;

@SerializedName("pg_id")
String pg_id;

@SerializedName("escrow")
boolean escrow;

Expand Down Expand Up @@ -103,6 +106,9 @@ public class Payment {
@SerializedName("custom_data")
String custom_data;

@SerializedName("user_agent")
String user_agent;

@SerializedName("status")
String status;

Expand Down Expand Up @@ -167,6 +173,10 @@ public String getPgTid() {
return pg_tid;
}

public String getPgId() {
return pg_id;
}

public boolean isEscrow() {
return escrow;
}
Expand Down Expand Up @@ -267,6 +277,10 @@ public String getCustomData() {
return custom_data;
}

public String getUserAgent() {
return user_agent;
}

public String getStatus() {
return status;
}
Expand Down