com.genexus.cloud.serverless.model.EventMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxawsserverless Show documentation
Show all versions of gxawsserverless Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
package com.genexus.cloud.serverless.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.*;
public class EventMessage {
@JsonProperty("EventMessageId")
private String messageId;
@JsonProperty("EventMessageDate")
private Date messageDate;
@JsonProperty("EventMessageSourceType")
private String messageSourceType;
@JsonProperty("EventMessageData")
private String messageData;
@JsonProperty("EventMessageVersion")
private String messageVersion = "1.0";
@JsonProperty("EventMessageProperties")
private List messageProperties = new ArrayList<>();
public String getMessageId() {
return messageId;
}
public void setMessageId(String messageId) {
this.messageId = messageId;
}
public Date getMessageDate() {
return messageDate;
}
public void setMessageDate(Date messageDate) {
this.messageDate = messageDate;
}
public String getMessageSourceType() {
return messageSourceType;
}
public void setMessageSourceType(String messageSourceType) {
this.messageSourceType = messageSourceType;
}
public String getMessageData() {
return messageData;
}
public void setMessageData(String messageData) {
this.messageData = messageData;
}
public String getMessageVersion() {
return messageVersion;
}
public void setMessageVersion(String messageVersion) {
this.messageVersion = messageVersion;
}
public List getMessageProperties() {
return messageProperties;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy