@@ -55,6 +55,10 @@ public class InitiateBatchTransferRequest {
55
55
@ SerializedName ("transfer_scene_id" )
56
56
private String transferSceneId ;
57
57
58
+ /** 通知地址 说明:异步接收微信支付结果通知的回调地址,通知url必须为公网可访问的url,必须为https,不能携带参数。 */
59
+ @ SerializedName ("notify_url" )
60
+ private String notifyUrl ;
61
+
58
62
public String getAppid () {
59
63
return appid ;
60
64
}
@@ -119,6 +123,14 @@ public void setTransferSceneId(String transferSceneId) {
119
123
this .transferSceneId = transferSceneId ;
120
124
}
121
125
126
+ public String getNotifyUrl () {
127
+ return notifyUrl ;
128
+ }
129
+
130
+ public void setNotifyUrl (String notifyUrl ) {
131
+ this .notifyUrl = notifyUrl ;
132
+ }
133
+
122
134
@ Override
123
135
public String toString () {
124
136
StringBuilder sb = new StringBuilder ();
@@ -131,6 +143,7 @@ public String toString() {
131
143
sb .append (" totalNum: " ).append (toIndentedString (totalNum )).append ("\n " );
132
144
sb .append (" transferDetailList: " ).append (toIndentedString (transferDetailList )).append ("\n " );
133
145
sb .append (" transferSceneId: " ).append (toIndentedString (transferSceneId )).append ("\n " );
146
+ sb .append (" notifyUrl: " ).append (toIndentedString (notifyUrl )).append ("\n " );
134
147
sb .append ("}" );
135
148
return sb .toString ();
136
149
}
@@ -153,6 +166,7 @@ public InitiateBatchTransferRequest cloneWithCipher(UnaryOperator<String> s) {
153
166
}
154
167
}
155
168
copy .transferSceneId = transferSceneId ;
169
+ copy .notifyUrl = notifyUrl ;
156
170
return copy ;
157
171
}
158
172
}
0 commit comments