Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additional fields for VoiceCommentData #713

Merged
merged 3 commits into from
Sep 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,17 +1,42 @@
package org.zendesk.client.v2.model.comments;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Date;

/**
* @author besbes
* @since 05/03/2024 13:51
*/
public class VoiceCommentData {

private String from;
private String to;
private String recordingUrl;
private Long callDuration;
private Date startedAt;

@JsonProperty("from")
public String getFrom() {
return from;
}

@JsonProperty("to")
public String getTo() {
return to;
}

@JsonProperty("recording_url")
public String getRecordingUrl() {
return recordingUrl;
}

@JsonProperty("call_duration")
public Long getCallDuration() {
return callDuration;
}

@JsonProperty("started_at")
public Date getStartedAt() {
return startedAt;
}
}