-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from iamport/feature/paymentwall-add-parameter
페이먼트월 관련 parameter 추가
- Loading branch information
Showing
9 changed files
with
1,282 additions
and
884 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
src/main/java/com/siot/IamportRestClient/request/GetScheduleData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
package com.siot.IamportRestClient.request; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
public class GetScheduleData { | ||
|
||
@SerializedName("schedule_from") | ||
private int schedule_from; | ||
|
||
@SerializedName("schedule_to") | ||
private int schedule_to; | ||
|
||
@SerializedName("schedule_status") | ||
private String schedule_status; | ||
|
||
@SerializedName("page") | ||
private int page; | ||
|
||
@SerializedName("limit") | ||
private int limit; | ||
|
||
public GetScheduleData(int schedule_from, int schedule_to, String schedule_status, int page, int limit) { | ||
this.schedule_from = schedule_from; | ||
this.schedule_to = schedule_to; | ||
this.schedule_status = schedule_status; | ||
this.page = page; | ||
this.limit = limit; | ||
} | ||
|
||
public int getSchedule_from() { | ||
return schedule_from; | ||
} | ||
|
||
public void setSchedule_from(int schedule_from) { | ||
this.schedule_from = schedule_from; | ||
} | ||
|
||
public int getSchedule_to() { | ||
return schedule_to; | ||
} | ||
|
||
public void setSchedule_to(int schedule_to) { | ||
this.schedule_to = schedule_to; | ||
} | ||
|
||
public String getSchedule_status() { | ||
return schedule_status; | ||
} | ||
|
||
public void setSchedule_status(String schedule_status) { | ||
this.schedule_status = schedule_status; | ||
} | ||
|
||
public int getPage() { | ||
return page; | ||
} | ||
|
||
public void setPage(int page) { | ||
this.page = page; | ||
} | ||
|
||
public int getLimit() { | ||
return limit; | ||
} | ||
|
||
public void setLimit(int limit) { | ||
this.limit = limit; | ||
} | ||
} |
Oops, something went wrong.