forked from crowdin/crowdin-api-client-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStringComment.java
More file actions
45 lines (38 loc) · 981 Bytes
/
StringComment.java
File metadata and controls
45 lines (38 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.crowdin.client.stringcomments.model;
import lombok.Data;
import java.util.Date;
import java.util.List;
@Data
public class StringComment {
private Long id;
private String text;
private Long userId;
private Long stringId;
private User user;
private StringObject string;
private String languageId;
private Type type;
private String issueType;
private IssueStatus issueStatus;
private Date createdAt;
private List<Attachment> attachments;
@Data
public static class User {
private Long id;
private String username;
private String fullName;
private String avatarUrl;
}
@Data
public static class StringObject {
private Long id;
private String text;
private String type;
@Deprecated
private Boolean hasPlurals;
@Deprecated
private Boolean isIcu;
private String context;
private Long fileId;
}
}