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

com.bandwidth.iris.sdk.model.ImportTnOrderSummary 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.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;


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

    @XmlElement(name = "accountId")
    private int accountId;
    @XmlElement(name = "CountOfTNs")
    private int countOfTNs;
    @XmlElement(name = "userId")
    private String userId;
    @XmlElement(name = "lastModifiedDate")
    private String lastModifiedDate;
    @XmlElement(name = "OrderDate")
    private String orderDate;
    @XmlElement(name = "OrderStatus")
    private String orderStatus;
    @XmlElement(name = "OrderId")
    private String orderId;
    @XmlElement( name = "OrderType")
    private String orderType;

    public int getAccountId() {
        return accountId;
    }

    public void setAccountId(int accountId) {
        this.accountId = accountId;
    }

    public int getCountOfTNs() {
        return countOfTNs;
    }

    public void setCountOfTNs(int countOfTNs) {
        this.countOfTNs = countOfTNs;
    }

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }

    public String getLastModifiedDate() {
        return lastModifiedDate;
    }

    public void setLastModifiedDate(String lastModifiedDate) {
        this.lastModifiedDate = lastModifiedDate;
    }

    public String getOrderDate() {
        return orderDate;
    }

    public void setOrderDate(String orderDate) {
        this.orderDate = orderDate;
    }

    public String getOrderStatus() {
        return orderStatus;
    }

    public void setOrderStatus(String orderStatus) {
        this.orderStatus = orderStatus;
    }

    public String getOrderId() {
        return orderId;
    }

    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }

    public String getOrderType() {
        return orderType;
    }

    public void setOrderType(String orderType) {
        this.orderType = orderType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy