Skip to content

Commit eedc2d6

Browse files
authored
Merge branch 'master' into dependabot/maven/org.slf4j-slf4j-api-2.0.16
2 parents e86c4ae + 0c24742 commit eedc2d6

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
<dependency>
100100
<groupId>com.fasterxml.jackson</groupId>
101101
<artifactId>jackson-bom</artifactId>
102-
<version>2.17.1</version>
102+
<version>2.17.2</version>
103103
<type>pom</type>
104104
<scope>import</scope>
105105
</dependency>
@@ -165,7 +165,7 @@
165165
<groupId>org.assertj</groupId>
166166
<artifactId>assertj-core</artifactId>
167167
<!-- use 2.9.0 for Java 7 projects -->
168-
<version>3.26.0</version>
168+
<version>3.26.3</version>
169169
<scope>test</scope>
170170
</dependency>
171171
<dependency>
@@ -208,7 +208,7 @@
208208
<dependency>
209209
<groupId>org.codehaus.mojo</groupId>
210210
<artifactId>animal-sniffer-enforcer-rule</artifactId>
211-
<version>1.23</version>
211+
<version>1.24</version>
212212
</dependency>
213213
<dependency>
214214
<groupId>org.codehaus.mojo</groupId>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,42 @@
11
package org.zendesk.client.v2.model.comments;
22

33
import com.fasterxml.jackson.annotation.JsonProperty;
4+
import java.util.Date;
45

56
/**
67
* @author besbes
78
* @since 05/03/2024 13:51
89
*/
910
public class VoiceCommentData {
1011

12+
private String from;
13+
private String to;
14+
private String recordingUrl;
1115
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+
}
1232

1333
@JsonProperty("call_duration")
1434
public Long getCallDuration() {
1535
return callDuration;
1636
}
37+
38+
@JsonProperty("started_at")
39+
public Date getStartedAt() {
40+
return startedAt;
41+
}
1742
}

0 commit comments

Comments
 (0)