@@ -15,6 +15,7 @@ public class PGAvailable {
1515 put (PG .KCP , Arrays .asList (Method .PHONE , Method .CARD , Method .BANK , Method .VBANK , Method .SUBSCRIPT_CARD , Method .CARD_REBILL ));
1616 put (PG .DANAL , Arrays .asList (Method .PHONE , Method .CARD , Method .BANK , Method .VBANK , Method .SUBSCRIPT_CARD , Method .CARD_REBILL , Method .AUTH ));
1717 put (PG .INICIS , Arrays .asList (Method .PHONE , Method .CARD , Method .BANK , Method .VBANK ));
18+ put (PG .UDPAY , Arrays .asList (Method .PHONE , Method .CARD , Method .BANK , Method .VBANK , Method .SUBSCRIPT_CARD , Method .CARD_REBILL , Method .AUTH ));
1819 put (PG .NICEPAY , Arrays .asList (Method .PHONE , Method .CARD , Method .BANK , Method .VBANK , Method .KAKAO ));
1920 put (PG .PAYAPP , Arrays .asList (Method .PHONE , Method .CARD , Method .BANK , Method .VBANK , Method .KAKAO , Method .NPAY ));
2021 put (PG .LGUP , Arrays .asList (Method .PHONE , Method .CARD , Method .BANK , Method .VBANK ));
@@ -61,6 +62,8 @@ public static PG stringToPG(String pg) {
6162 return PG .DANAL ;
6263 case "inicis" :
6364 return PG .INICIS ;
65+ case "udpay" :
66+ return PG .UDPAY ;
6467 case "nicepay" :
6568 return PG .NICEPAY ;
6669 case "lgup" :
@@ -108,6 +111,8 @@ public static String pgToString(PG pg) {
108111 return "kcp" ;
109112 case INICIS :
110113 return "inicis" ;
114+ case UDPAY :
115+ return "udpay" ;
111116 case LGUP :
112117 return "lgup" ;
113118 case KAKAO :
0 commit comments