@@ -118,7 +118,10 @@ public RedirectTypeEnum read(final JsonReader jsonReader) throws IOException {
118118
119119 @ SerializedName ("redirectType" )
120120 private RedirectTypeEnum redirectType = null ;
121-
121+
122+ @ SerializedName ("userAgent" )
123+ private String userAgent = null ;
124+
122125 public QRCode merchantPaymentId (String merchantPaymentId ) {
123126 this .merchantPaymentId = merchantPaymentId ;
124127 return this ;
@@ -380,6 +383,18 @@ public void setRedirectType(RedirectTypeEnum redirectType) {
380383 this .redirectType = redirectType ;
381384 }
382385
386+ /**
387+ * The User agent of the web browser
388+ * @return userAgent
389+ **/
390+ @ ApiModelProperty (value = "User agent of the web browser" )
391+ public String getUserAgent () {
392+ return userAgent ;
393+ }
394+ public void setUserAgent (String userAgent ) {
395+ this .userAgent = userAgent ;
396+ }
397+
383398
384399 @ Override
385400 public boolean equals (Object o ) {
@@ -406,7 +421,7 @@ public String toString() {
406421 + codeType + '\'' + ", storeInfo='" + storeInfo + '\'' + ", storeId='" + storeId + '\'' + ", terminalId='"
407422 + terminalId + '\'' + ", requestedAt=" + requestedAt + ", isAuthorization=" + isAuthorization
408423 + ", authorizationExpiry=" + authorizationExpiry + ", redirectUrl='" + redirectUrl + '\''
409- + ", redirectType=" + redirectType + '}' ;
424+ + ", redirectType=" + redirectType + ", userAgent=" + userAgent + '}' ;
410425 }
411426
412427}
0 commit comments