File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
src/main/java/org/zendesk/client/v2/model/comments Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import com .fasterxml .jackson .annotation .JsonProperty ;
4
4
5
+ import java .util .Date ;
6
+
5
7
/**
6
8
* @author besbes
7
9
* @since 05/03/2024 13:51
8
10
*/
9
11
public class VoiceCommentData {
10
12
13
+ private String from ;
14
+ private String to ;
15
+ private String recordingUrl ;
11
16
private Long callDuration ;
17
+ private Date startedAt ;
18
+
19
+ @ JsonProperty ("from" )
20
+ public String getFrom () {
21
+ return from ;
22
+ }
23
+
24
+ @ JsonProperty ("to" )
25
+ public String getTo () {
26
+ return to ;
27
+ }
28
+
29
+ @ JsonProperty ("recording_url" )
30
+ public String getRecordingUrl () {
31
+ return recordingUrl ;
32
+ }
12
33
13
34
@ JsonProperty ("call_duration" )
14
35
public Long getCallDuration () {
15
36
return callDuration ;
16
37
}
38
+
39
+ @ JsonProperty ("started_at" )
40
+ public Date getStartedAt () {
41
+ return startedAt ;
42
+ }
17
43
}
You can’t perform that action at this time.
0 commit comments