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

com.bandwidth.iris.sdk.model.ImportTnError Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package com.bandwidth.iris.sdk.model;

import javax.xml.bind.annotation.*;
import java.util.List;

@XmlRootElement(name="ImportTnError")
@XmlAccessorType(XmlAccessType.FIELD)
public class ImportTnError {

    @XmlElement(name = "Code")
    private String code;
    @XmlElement(name = "Description")
    private String description;
    @XmlElementWrapper(name = "TelephoneNumbers")
    @XmlElement(name = "TelephoneNumber")
    private List telephoneNumberList;

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public List getTelephoneNumberList() {
        return telephoneNumberList;
    }

    public void setTelephoneNumberList(List telephoneNumberList) {
        this.telephoneNumberList = telephoneNumberList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy