com.messagebird.objects.voicecalls.WebhookResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messagebird-api Show documentation
Show all versions of messagebird-api Show documentation
The MessageBird API provides a API to the MessageBird SMS and voicemail services located at https://www.messagebird.com.
The newest version!
package com.messagebird.objects.voicecalls;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import java.util.Date;
import java.util.Map;
public class WebhookResponse implements Serializable {
private static final long serialVersionUID = -2160700071636853317L;
private String id;
private String url;
private String token;
private Date createdAt;
private Date updatedAt;
@JsonProperty("_links")
private Map links;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Date getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(Date updatedAt) {
this.updatedAt = updatedAt;
}
public Map getLinks() {
return links;
}
public void setLinks(Map links) {
this.links = links;
}
@Override
public String toString() {
return "WebhookResponse{" +
"id='" + id + '\'' +
", url='" + url + '\'' +
", token='" + token + '\'' +
", createdAt=" + createdAt +
", updatedAt=" + updatedAt +
", links=" + links +
'}';
}
}