13
13
@ JsonIgnoreProperties (ignoreUnknown = true )
14
14
public class Ticket extends Request implements SearchResultEntity {
15
15
16
- private static final long serialVersionUID = 1L ;
16
+ private static final long serialVersionUID = - 7559199410302237012L ;
17
17
18
18
private String externalId ;
19
- private Type type ;
20
- private Priority priority ;
21
19
private String recipient ;
22
20
private Long submitterId ;
23
21
private Long assigneeId ;
@@ -29,7 +27,6 @@ public class Ticket extends Request implements SearchResultEntity {
29
27
private boolean hasIncidents ;
30
28
private Date dueAt ;
31
29
private List <String > tags ;
32
- private List <CustomFieldValue > customFields ;
33
30
private SatisfactionRating satisfactionRating ;
34
31
private List <Long > sharingAgreementIds ;
35
32
private List <Long > followupIds ;
@@ -79,15 +76,6 @@ public void setCollaborators(List<Collaborator> collaborators) {
79
76
this .collaborators = collaborators ;
80
77
}
81
78
82
- @ JsonProperty ("custom_fields" )
83
- public List <CustomFieldValue > getCustomFields () {
84
- return customFields ;
85
- }
86
-
87
- public void setCustomFields (List <CustomFieldValue > customFields ) {
88
- this .customFields = customFields ;
89
- }
90
-
91
79
@ JsonProperty ("due_at" )
92
80
public Date getDueAt () {
93
81
return dueAt ;
@@ -142,14 +130,6 @@ public void setHasIncidents(boolean hasIncidents) {
142
130
this .hasIncidents = hasIncidents ;
143
131
}
144
132
145
- public Priority getPriority () {
146
- return priority ;
147
- }
148
-
149
- public void setPriority (Priority priority ) {
150
- this .priority = priority ;
151
- }
152
-
153
133
@ JsonProperty ("problem_id" )
154
134
public Long getProblemId () {
155
135
return problemId ;
@@ -231,14 +211,6 @@ public void setTicketFormId(Long ticketFormId) {
231
211
this .ticketFormId = ticketFormId ;
232
212
}
233
213
234
- public Type getType () {
235
- return type ;
236
- }
237
-
238
- public void setType (Type type ) {
239
- this .type = type ;
240
- }
241
-
242
214
@ JsonProperty ("is_public" )
243
215
public Boolean getIsPublic () {
244
216
return isPublic ;
0 commit comments