
com.megaport.api.dto.NutanixPortsDto 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 java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class NutanixPortsDto {
private Integer bandwidth;
private String resource_type;
private String serviceKey;
private List megaports;
public Integer getBandwidth() {
return bandwidth;
}
public void setBandwidth(Integer bandwidth) {
this.bandwidth = bandwidth;
}
public String getResource_type() {
return resource_type;
}
public void setResource_type(String resource_type) {
this.resource_type = resource_type;
}
public String getServiceKey() {
return serviceKey;
}
public void setServiceKey(String service_key) {
this.serviceKey = service_key;
}
public List getMegaports() {
return megaports;
}
public void setMegaports(List megaports) {
this.megaports = megaports;
}
@Override
public String toString() {
return "NutanixPortsDto{" +
"bandwidth=" + bandwidth +
", resource_type='" + resource_type + '\'' +
", serviceKey='" + serviceKey + '\'' +
", megaports=" + megaports +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy