@JsonProperty
final boolean isRead;
+ @JsonProperty
+ final boolean isViewed;
+
@JsonProperty
final List<Long> timestamps;
this.when = receiptMessage.getWhen();
this.isDelivery = receiptMessage.isDeliveryReceipt();
this.isRead = receiptMessage.isReadReceipt();
+ this.isViewed = receiptMessage.isViewedReceipt();
this.timestamps = receiptMessage.getTimestamps();
}
this.when = when;
this.isDelivery = isDelivery;
this.isRead = isRead;
+ this.isViewed = isViewed;
this.timestamps = timestamps;
}