Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
public class Subscription {
  String appId;
  String studyId;
  MessageType messageType;
  String recipientId;
}

// As submitted
public class Message {
  String studyId;
  MessageType messageType;
  String text;
}

// As persisted, one messagerecord per subscription
public class Message {
  String guid;
  String appId;
  String studyId;
  String userId;
  MessageType messageType;
  String text;
  boolean read;
  String readBy;
}