com.browserstack.client.model.MobilePlatform 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.client.model;
import com.fasterxml.jackson.annotation.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class MobilePlatform extends Platform {
@JsonProperty("devices")
private List devices = new ArrayList<>();
@JsonIgnore
private Map additionalProperties = new HashMap<>();
/**
* @return The devices
*/
@JsonProperty("devices")
public List getDevices() {
return devices;
}
/**
* @param devices The devices
*/
@JsonProperty("devices")
public void setDevices(List devices) {
this.devices = devices;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}