com.messagebird.objects.integrations.HSMExample 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.integrations;
import java.util.List;
/**
* HSMExample object
*
* @see HSMExample object
* @author ssk910
*/
public class HSMExample {
/* Example values for HEADER type components, TEXT format */
private List header_text;
/* Example set of values for the body text variables */
private List> body_text;
/* Example values for HEADER type components, IMAGE format */
private List header_url;
public List getHeader_text() {
return header_text;
}
public void setHeader_text(List header_text) {
this.header_text = header_text;
}
public List> getBody_text() {
return body_text;
}
public void setBody_text(List> body_text) {
this.body_text = body_text;
}
public List getHeader_url() {
return header_url;
}
public void setHeader_url(List header_url) {
this.header_url = header_url;
}
@Override
public String toString() {
return "HSMExample{" +
"header_text=" + header_text +
", body_text=" + body_text +
", header_url=" + header_url +
'}';
}
}