All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.messagebird.objects.integrations.HSMExample Maven / Gradle / Ivy

Go to download

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 +
        '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy