We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 464587c commit 393ef10Copy full SHA for 393ef10
src/main/java/com/browserstack/client/model/BrowserStackObject.java
@@ -1,18 +1,21 @@
1
package com.browserstack.client.model;
2
3
import com.browserstack.client.BrowserStackClient;
4
+import com.fasterxml.jackson.annotation.JsonIgnore;
5
6
import java.io.Serializable;
7
8
9
public abstract class BrowserStackObject implements Serializable {
10
private transient BrowserStackClient client;
11
12
+ @JsonIgnore
13
public BrowserStackClient getClient() {
14
return client;
15
}
16
17
@SuppressWarnings("unchecked")
18
19
public <T> T setClient(BrowserStackClient client) {
20
this.client = client;
21
return (T) this;
0 commit comments