com.withabound.models.mailings.MailingRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of withabound-java Show documentation
Show all versions of withabound-java Show documentation
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);
}
}