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

com.withabound.models.mailings.MailingRequest Maven / Gradle / Ivy

Go to download

The Abound Java SDK provides convenient access to the Abound API from applications written in Java.

The newest version!
package com.withabound.models.mailings;

import java.util.Optional;
import lombok.Builder;
import lombok.Setter;

@Builder
@Setter
public class MailingRequest {
  /** Used for testing in sandbox. This will be ignored in all production requests. */
  private String test_status;

  public Optional getTest_Status() {
    return Optional.ofNullable(test_status);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy