com.browserstack.automate.model.SessionNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automate-client-java Show documentation
Show all versions of automate-client-java Show documentation
Java bindings for BrowserStack Automate REST API
The newest version!
package com.browserstack.automate.model;
import com.fasterxml.jackson.annotation.*;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SessionNode implements Serializable {
@JsonProperty("automation_session")
private Session session;
@JsonIgnore
private Map additionalProperties = new HashMap<>();
/**
* @return The session
*/
@JsonProperty("automation_session")
public Session getSession() {
return session;
}
/**
* @param session The automation_session
*/
@JsonProperty("automation_session")
private void setSession(Session session) {
this.session = session;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
private void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}