com.bandwidth.iris.sdk.model.Note Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-java-iris-sdk Show documentation
Show all versions of bandwidth-java-iris-sdk Show documentation
Java SDK for use with the IRIS API.
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;
import java.util.Date;
@XmlRootElement(name = "Note")
@XmlAccessorType(XmlAccessType.FIELD)
public class Note extends BaseModel {
@XmlElement(name = "UserId")
private String userId;
@XmlElement(name = "Id")
private String id;
@XmlElement(name = "Description")
private String description;
@XmlElement(name = "LastDateModifier")
private Date lastDateModifier;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Date getLastDateModifier() {
return lastDateModifier;
}
public void setLastDateModifier(Date lastDateModifier) {
this.lastDateModifier = lastDateModifier;
}
}