File tree Expand file tree Collapse file tree 2 files changed +28
-3
lines changed
src/main/java/org/zendesk/client/v2/model/comments Expand file tree Collapse file tree 2 files changed +28
-3
lines changed Original file line number Diff line number Diff line change 99
99
<dependency >
100
100
<groupId >com.fasterxml.jackson</groupId >
101
101
<artifactId >jackson-bom</artifactId >
102
- <version >2.17.1 </version >
102
+ <version >2.17.2 </version >
103
103
<type >pom</type >
104
104
<scope >import</scope >
105
105
</dependency >
165
165
<groupId >org.assertj</groupId >
166
166
<artifactId >assertj-core</artifactId >
167
167
<!-- use 2.9.0 for Java 7 projects -->
168
- <version >3.26.0 </version >
168
+ <version >3.26.3 </version >
169
169
<scope >test</scope >
170
170
</dependency >
171
171
<dependency >
208
208
<dependency >
209
209
<groupId >org.codehaus.mojo</groupId >
210
210
<artifactId >animal-sniffer-enforcer-rule</artifactId >
211
- <version >1.23 </version >
211
+ <version >1.24 </version >
212
212
</dependency >
213
213
<dependency >
214
214
<groupId >org.codehaus.mojo</groupId >
Original file line number Diff line number Diff line change 1
1
package org .zendesk .client .v2 .model .comments ;
2
2
3
3
import com .fasterxml .jackson .annotation .JsonProperty ;
4
+ import java .util .Date ;
4
5
5
6
/**
6
7
* @author besbes
7
8
* @since 05/03/2024 13:51
8
9
*/
9
10
public class VoiceCommentData {
10
11
12
+ private String from ;
13
+ private String to ;
14
+ private String recordingUrl ;
11
15
private Long callDuration ;
16
+ private Date startedAt ;
17
+
18
+ @ JsonProperty ("from" )
19
+ public String getFrom () {
20
+ return from ;
21
+ }
22
+
23
+ @ JsonProperty ("to" )
24
+ public String getTo () {
25
+ return to ;
26
+ }
27
+
28
+ @ JsonProperty ("recording_url" )
29
+ public String getRecordingUrl () {
30
+ return recordingUrl ;
31
+ }
12
32
13
33
@ JsonProperty ("call_duration" )
14
34
public Long getCallDuration () {
15
35
return callDuration ;
16
36
}
37
+
38
+ @ JsonProperty ("started_at" )
39
+ public Date getStartedAt () {
40
+ return startedAt ;
41
+ }
17
42
}
You can’t perform that action at this time.
0 commit comments