Skip to content

Commit cf1b832

Browse files
committed
add endUser to json string
1 parent b91ce80 commit cf1b832

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/com/qiniu/api/rs/PutPolicy.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ private String marshal() throws JSONException {
5656
if (this.asyncOps != null && this.asyncOps.length() > 0) {
5757
stringer.key("asyncOps").value(this.asyncOps);
5858
}
59+
if (this.endUser != null && this.endUser.length() > 0) {
60+
stringer.key("endUser").value(this.endUser);
61+
}
5962
stringer.key("deadline").value(this.expires);
6063
stringer.endObject();
6164

0 commit comments

Comments
 (0)