All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.megaport.api.dto.IpAddressDto Maven / Gradle / Ivy

The newest version!
package com.megaport.api.dto;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * Created by adam.wells on 27/06/2016.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class IpAddressDto {

    private String value;
    private String type;

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy