We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fe05ed commit 94414d3Copy full SHA for 94414d3
1 file changed
src/main/java/kr/co/bootpay/model/request/SubscribePayload.java
@@ -4,7 +4,7 @@
4
5
public class SubscribePayload {
6
public String billingKey; // 발급받은 빌링키
7
- public String itemName; //결제할 상품명, 결제창에 노출됨
+ public String itemName; // 결제할 상품명, 결제창에 노출됨
8
public long price; // 결제할 상품금액
9
public int taxFree; // 면세 상품일 경우 해당만큼의 금액을 설정
10
public String orderId; // 개발사에서 지정하는 고유주문번호
@@ -15,6 +15,6 @@ public class SubscribePayload {
15
public String feedbackUrl; // webhook 통지시 받으실 url 주소 (localhost 사용 불가)
16
public String feedbackContentType; // webhook 통지시 받으실 데이터 타입 (json 또는 urlencoded, 기본값 urlencoded)
17
public SubscribeExtra extra;
18
- public String schedulerType; //정기결제 예약시
+ public String schedulerType; //정기결제 예약시 - oneshot 으로 지정해야함.
19
public long executeAt; //정기결제 예약시
20
}
0 commit comments