package shine.db.entities; public class SignedMessageV2Entry { private String messageKey; private String baseKey; private String targetLogin; private String fromLogin; private String toLogin; private long timeMs; private long nonce; private int messageType; private byte[] rawBlock; private long createdAtMs; private String sourceApi; private String originSessionId; private String receiptRefBaseKey; private Integer receiptRefType; public String getMessageKey() { return messageKey; } public void setMessageKey(String messageKey) { this.messageKey = messageKey; } public String getBaseKey() { return baseKey; } public void setBaseKey(String baseKey) { this.baseKey = baseKey; } public String getTargetLogin() { return targetLogin; } public void setTargetLogin(String targetLogin) { this.targetLogin = targetLogin; } public String getFromLogin() { return fromLogin; } public void setFromLogin(String fromLogin) { this.fromLogin = fromLogin; } public String getToLogin() { return toLogin; } public void setToLogin(String toLogin) { this.toLogin = toLogin; } public long getTimeMs() { return timeMs; } public void setTimeMs(long timeMs) { this.timeMs = timeMs; } public long getNonce() { return nonce; } public void setNonce(long nonce) { this.nonce = nonce; } public int getMessageType() { return messageType; } public void setMessageType(int messageType) { this.messageType = messageType; } public byte[] getRawBlock() { return rawBlock; } public void setRawBlock(byte[] rawBlock) { this.rawBlock = rawBlock; } public long getCreatedAtMs() { return createdAtMs; } public void setCreatedAtMs(long createdAtMs) { this.createdAtMs = createdAtMs; } public String getSourceApi() { return sourceApi; } public void setSourceApi(String sourceApi) { this.sourceApi = sourceApi; } public String getOriginSessionId() { return originSessionId; } public void setOriginSessionId(String originSessionId) { this.originSessionId = originSessionId; } public String getReceiptRefBaseKey() { return receiptRefBaseKey; } public void setReceiptRefBaseKey(String receiptRefBaseKey) { this.receiptRefBaseKey = receiptRefBaseKey; } public Integer getReceiptRefType() { return receiptRefType; } public void setReceiptRefType(Integer receiptRefType) { this.receiptRefType = receiptRefType; } }