@@ -29,6 +29,7 @@ public class SessionResponse implements Serializable {
2929 private Boolean clearedExistingSession = null ;
3030 private AllowedMedia allowedMedia = null ;
3131 private List <String > blockedExtensions = new ArrayList <String >();
32+ private Double maxCustomDataBytes = null ;
3233
3334
3435 /**
@@ -133,6 +134,23 @@ public void setBlockedExtensions(List<String> blockedExtensions) {
133134 }
134135
135136
137+ /**
138+ **/
139+ public SessionResponse maxCustomDataBytes (Double maxCustomDataBytes ) {
140+ this .maxCustomDataBytes = maxCustomDataBytes ;
141+ return this ;
142+ }
143+
144+ @ ApiModelProperty (example = "null" , value = "" )
145+ @ JsonProperty ("maxCustomDataBytes" )
146+ public Double getMaxCustomDataBytes () {
147+ return maxCustomDataBytes ;
148+ }
149+ public void setMaxCustomDataBytes (Double maxCustomDataBytes ) {
150+ this .maxCustomDataBytes = maxCustomDataBytes ;
151+ }
152+
153+
136154 @ Override
137155 public boolean equals (java .lang .Object o ) {
138156 if (this == o ) {
@@ -147,12 +165,13 @@ public boolean equals(java.lang.Object o) {
147165 Objects .equals (this .readOnly , sessionResponse .readOnly ) &&
148166 Objects .equals (this .clearedExistingSession , sessionResponse .clearedExistingSession ) &&
149167 Objects .equals (this .allowedMedia , sessionResponse .allowedMedia ) &&
150- Objects .equals (this .blockedExtensions , sessionResponse .blockedExtensions );
168+ Objects .equals (this .blockedExtensions , sessionResponse .blockedExtensions ) &&
169+ Objects .equals (this .maxCustomDataBytes , sessionResponse .maxCustomDataBytes );
151170 }
152171
153172 @ Override
154173 public int hashCode () {
155- return Objects .hash (connected , newSession , readOnly , clearedExistingSession , allowedMedia , blockedExtensions );
174+ return Objects .hash (connected , newSession , readOnly , clearedExistingSession , allowedMedia , blockedExtensions , maxCustomDataBytes );
156175 }
157176
158177 @ Override
@@ -166,6 +185,7 @@ public String toString() {
166185 sb .append (" clearedExistingSession: " ).append (toIndentedString (clearedExistingSession )).append ("\n " );
167186 sb .append (" allowedMedia: " ).append (toIndentedString (allowedMedia )).append ("\n " );
168187 sb .append (" blockedExtensions: " ).append (toIndentedString (blockedExtensions )).append ("\n " );
188+ sb .append (" maxCustomDataBytes: " ).append (toIndentedString (maxCustomDataBytes )).append ("\n " );
169189 sb .append ("}" );
170190 return sb .toString ();
171191 }
0 commit comments