@@ -51,9 +51,6 @@ public class Context {
5151 @ JsonProperty ("userAgent" )
5252 private String userAgent ;
5353
54- @ JsonProperty ("clientHints" )
55- private ClientHints clientHints ;
56-
5754 @ JsonProperty ("beacon" )
5855 private Boolean beacon = false ;
5956
@@ -237,24 +234,6 @@ public void setUserAgent(String userAgent) {
237234 this .userAgent = userAgent ;
238235 }
239236
240- public Context clientHints (ClientHints clientHints ) {
241- this .clientHints = clientHints ;
242- return this ;
243- }
244-
245- /**
246- * Get clientHints
247- *
248- * @return clientHints
249- */
250- public ClientHints getClientHints () {
251- return clientHints ;
252- }
253-
254- public void setClientHints (ClientHints clientHints ) {
255- this .clientHints = clientHints ;
256- }
257-
258237 public Context beacon (Boolean beacon ) {
259238 this .beacon = beacon ;
260239 return this ;
@@ -293,7 +272,6 @@ public boolean equals(Object o) {
293272 && Objects .equals (this .geo , context .geo )
294273 && Objects .equals (this .timeOffsetInMinutes , context .timeOffsetInMinutes )
295274 && Objects .equals (this .userAgent , context .userAgent )
296- && Objects .equals (this .clientHints , context .clientHints )
297275 && Objects .equals (this .beacon , context .beacon );
298276 }
299277
@@ -310,7 +288,6 @@ public int hashCode() {
310288 geo ,
311289 timeOffsetInMinutes ,
312290 userAgent ,
313- clientHints ,
314291 beacon );
315292 }
316293
@@ -330,7 +307,6 @@ public String toString() {
330307 .append (toIndentedString (timeOffsetInMinutes ))
331308 .append ("\n " );
332309 sb .append (" userAgent: " ).append (toIndentedString (userAgent )).append ("\n " );
333- sb .append (" clientHints: " ).append (toIndentedString (clientHints )).append ("\n " );
334310 sb .append (" beacon: " ).append (toIndentedString (beacon )).append ("\n " );
335311 sb .append ("}" );
336312 return sb .toString ();
0 commit comments