Skip to content

Commit 388e64f

Browse files
committed
Additional fields for VoiceCommentData
1 parent 0702d6e commit 388e64f

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/main/java/org/zendesk/client/v2/model/comments/VoiceCommentData.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,42 @@
22

33
import com.fasterxml.jackson.annotation.JsonProperty;
44

5+
import java.util.Date;
6+
57
/**
68
* @author besbes
79
* @since 05/03/2024 13:51
810
*/
911
public class VoiceCommentData {
1012

13+
private String from;
14+
private String to;
15+
private String recordingUrl;
1116
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+
}
1233

1334
@JsonProperty("call_duration")
1435
public Long getCallDuration() {
1536
return callDuration;
1637
}
38+
39+
@JsonProperty("started_at")
40+
public Date getStartedAt() {
41+
return startedAt;
42+
}
1743
}

0 commit comments

Comments
 (0)