
com.megaport.api.dto.ServiceLineItemDto 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 com.fasterxml.jackson.annotation.JsonInclude;
/**
* Created by chris.zhao on 28/07/2015.
*/
@JsonIgnoreProperties(ignoreUnknown=true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ServiceLineItemDto {
private PriceDto price;
private String serviceName;
private String productType;
private String productUid;
private String error;
private String market;
private String metro;
public PriceDto getPrice() {
return price;
}
public void setPrice(PriceDto price) {
this.price = price;
}
public String getServiceName() {
return serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
public String getProductType() {
return productType;
}
public void setProductType(String productType) {
this.productType = productType;
}
public String getProductUid() {
return productUid;
}
public void setProductUid(String productUid) {
this.productUid = productUid;
}
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
public String getMarket() {
return market;
}
public void setMarket(String market) {
this.market = market;
}
public String getMetro() {
return metro;
}
public void setMetro(String metro) {
this.metro = metro;
}
@Override
public String toString() {
return "ServiceLineItemDto{" +
"price=" + price +
", serviceName='" + serviceName + '\'' +
", productType='" + productType + '\'' +
", productUid='" + productUid + '\'' +
", error='" + error + '\'' +
", market='" + market + '\'' +
", metro='" + metro + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy