model.RoomSystemInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-api-client-java Show documentation
Show all versions of symphony-api-client-java Show documentation
Symphony API Client provided by Symphony Platform Solutions team
package model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class RoomSystemInfo {
private String id;
private long creationDate;
private long createdByUserId;
private boolean active;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public long getCreationDate() {
return creationDate;
}
public void setCreationDate(long creationDate) {
this.creationDate = creationDate;
}
public long getCreatedByUserId() {
return createdByUserId;
}
public void setCreatedByUserId(long createdByUserId) {
this.createdByUserId = createdByUserId;
}
public boolean isActive() {
return active;
}
public void setActive(boolean active) {
this.active = active;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy