com.messagebird.objects.conversations.Media 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 Media {
private String url;
private String caption;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getCaption() {
return caption;
}
public void setCaption(String caption) {
this.caption = caption;
}
@Override
public String toString() {
return "Media{" +
"url='" + url + '\'' +
", caption='" + caption + '\'' +
'}';
}
}