parent
7429e2cbc7
commit
a79a765fac
@ -7,7 +7,9 @@ import java.util.Date;
|
|||||||
public class Comment {
|
public class Comment {
|
||||||
@SerializedName("_id")
|
@SerializedName("_id")
|
||||||
private String id;
|
private String id;
|
||||||
|
@SerializedName(value = "comment", alternate = "text")
|
||||||
private String comment;
|
private String comment;
|
||||||
|
@SerializedName(value = "authorId", alternate = "userId")
|
||||||
private String authorId;
|
private String authorId;
|
||||||
private String boardId;
|
private String boardId;
|
||||||
private String cardId;
|
private String cardId;
|
||||||
@ -26,6 +28,22 @@ public class Comment {
|
|||||||
return authorId;
|
return authorId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getBoardId() {
|
||||||
|
return boardId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCardId() {
|
||||||
|
return cardId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getCreatedAt() {
|
||||||
|
return createdAt;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getModifiedAt() {
|
||||||
|
return modifiedAt;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "Comment{" +
|
return "Comment{" +
|
||||||
|
@ -103,6 +103,8 @@ public class CardCommentServiceTest {
|
|||||||
).execute().body();
|
).execute().body();
|
||||||
|
|
||||||
assertNotNull(comment);
|
assertNotNull(comment);
|
||||||
|
assertNotNull(comment.getAuthorId());
|
||||||
|
assertNotNull(comment.getComment());
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user