Browse Source

notice list data Changes

new_design
Santosh Bhandary 4 years ago
parent
commit
2c558a38d2
  1. 14
      app/src/main/java/com/swifttech/remit/android/features/notice/model/NoticeDTO.java

14
app/src/main/java/com/swifttech/remit/android/features/notice/model/NoticeDTO.java

@ -14,10 +14,22 @@ public class NoticeDTO {
@SerializedName("createDate")
@Expose
private String createDate;
@SerializedName("isRead")
@SerializedName("isRead")// 0 => Not Read, 1=> Read,
@Expose
private String isRead;
@SerializedName("type")//0 => General Notice, 1=> Txn Notice
@Expose
private String type;
@SerializedName("extra")//If type==1, then extra will have Txn id
@Expose
private String extra;
public String getRowId() {
return rowId;
}

Loading…
Cancel
Save