
com.megaport.api.dto.GooglePortsDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
This library is a Java wrapper for the Megaport API.
The newest version!
package com.megaport.api.dto;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.io.Serializable;
import java.util.List;
/**
* Created by leo.na on 16/03/2015.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class GooglePortsDto implements Serializable {
private List bandwidths;
private String resource_type;
private String service_key;
private List megaports;
public List getBandwidths() {
return bandwidths;
}
public void setBandwidths(List bandwidths) {
this.bandwidths = bandwidths;
}
public String getResource_type() {
return resource_type;
}
public void setResource_type(String resource_type) {
this.resource_type = resource_type;
}
public String getService_key() {
return service_key;
}
public void setService_key(String service_key) {
this.service_key = service_key;
}
public List getMegaports() {
return megaports;
}
public void setMegaports(List megaports) {
this.megaports = megaports;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy