com.withabound.models.mailings.MailingParams 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 com.withabound.resources.base.AboundQueryParameters;
import java.util.HashMap;
import java.util.Map;
import lombok.Builder;
import lombok.Getter;
@Builder
@Getter
public class MailingParams extends AboundQueryParameters {
/**
* An identifier used to request a specific page of results. Responses are limited to a maximum of
* 100 records.
*/
private String page;
@Override
public Map asMap() {
final Map queryParams = new HashMap<>();
queryParams.put("page", page);
return queryParams;
}
}