com.messagebird.objects.conversations.ConversationSendResponse 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.conversations;
public class ConversationSendResponse {
private String id; //messageID
private String status;
private FallbackOptionResponse fallback;
public static class FallbackOptionResponse{
private String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Override
public String toString() {
return "FallbackOptionResponse{" +
"id='" + id + '\'' +
'}';
}
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public FallbackOptionResponse getFallback() {
return fallback;
}
public void setFallback(FallbackOptionResponse fallback) {
this.fallback = fallback;
}
@Override
public String toString() {
return "ConversationSendResponse{" +
"id='" + id + '\'' +
", status='" + status + '\'' +
", fallback=" + fallback +
'}';
}
}