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

com.bandwidth.iris.sdk.model.DldaTnGroup 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.ArrayList;
import java.util.List;

@XmlRootElement(name = "DLDATnGroup")
@XmlAccessorType(XmlAccessType.FIELD)
public class DldaTnGroup {
    @XmlElementWrapper(name = "TelephoneNumbers")
    @XmlElement(name = "TelephoneNumber")
    private List telephoneNumberList = new ArrayList();

    @XmlElement(name = "AccountType")
    private String accountType;

    @XmlElement(name = "ListedType")
    private String listingType;

    @XmlElement(name = "ListingName")
    private ListingName listingName;

    @XmlElement(name = "ListAddress")
    private boolean listAddress;

    @XmlElement(name = "Address")
    private Address address;

    public List getTelephoneNumberList() {
        return telephoneNumberList;
    }

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

    public String getAccountType() {
        return accountType;
    }

    public void setAccountType(String accountType) {
        this.accountType = accountType;
    }

    public String getListingType() {
        return listingType;
    }

    public void setListingType(String listingType) {
        this.listingType = listingType;
    }

    public ListingName getListingName() {
        return listingName;
    }

    public void setListingName(ListingName listingName) {
        this.listingName = listingName;
    }

    public boolean isListAddress() {
        return listAddress;
    }

    public void setListAddress(boolean listAddress) {
        this.listAddress = listAddress;
    }

    public Address getAddress() {
        return address;
    }

    public void setAddress(Address address) {
        this.address = address;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy