Skip to content

Commit

Permalink
stream property added to models
Browse files Browse the repository at this point in the history
  • Loading branch information
ibalosh committed Nov 5, 2019
1 parent 35a4e34 commit a6ba84f
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,18 @@ public class Bounce {
private String subject;
private String content;
private String recordType;
private String messageStream;

// SETTERS AND GETTERS

public String getMessageStream() {
return messageStream;
}

public void setMessageStream(String messageStream) {
this.messageStream = messageStream;
}

public String getRecordType() { return recordType; }

public void setRecordType(String recordType) { this.recordType = recordType; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,18 @@ public class InboundMessage {
private String messageId;
private String status;
private List<Attachment> attachments;
private String messageStream;

// GETTERS AND SETTERS

public String getMessageStream() {
return messageStream;
}

public void setMessageStream(String messageStream) {
this.messageStream = messageStream;
}

public String getFrom() {
return from;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,18 @@ public class OutboundMessage {
private Boolean trackOpens;
private String trackLinks;
private Map<String, String> metadata;
private String messageStream;

// GETTERS AND SETTERS

public String getMessageStream() {
return messageStream;
}

public void setMessageStream(String messageStream) {
this.messageStream = messageStream;
}

public String getTag() {
return tag;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,18 @@ public class OutboundMessageClick {
private String tag;
private String recipient;
private String recordType;
private String messageStream;

// GETTERS AND SETTERS

public String getMessageStream() {
return messageStream;
}

public void setMessageStream(String messageStream) {
this.messageStream = messageStream;
}

public String getRecordType() { return recordType; }

public void setRecordType(String recordType) { this.recordType = recordType; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,18 @@ public class OutboundMessageOpen {
private String tag;
private String recipient;
private String recordType;
private String messageStream;

// GETTERS AND SETTERS

public String getMessageStream() {
return messageStream;
}

public void setMessageStream(String messageStream) {
this.messageStream = messageStream;
}

public String getRecordType() { return recordType; }

public void setRecordType(String recordType) { this.recordType = recordType; }
Expand Down

0 comments on commit a6ba84f

Please sign in to comment.