![JAR search and dependency download from the Maven repository](/logo.png)
com.mailgun.model.seedlist.SeedListsPageRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailgun-java Show documentation
Show all versions of mailgun-java Show documentation
The Mailgun SDK for Java enables Java developers to work with Mailgun API
efficiently.
The newest version!
package com.mailgun.model.seedlist;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Builder;
import lombok.Value;
import lombok.extern.jackson.Jacksonized;
/**
*
* Seed Lists Page Request.
*
*
* @see Seed Lists
*/
@Value
@Jacksonized
@Builder
@JsonIgnoreProperties(ignoreUnknown = true)
public class SeedListsPageRequest {
/**
*
* A limit on the number of items that can be returned (defaults to 25).
*
*/
Integer limit;
/**
*
* A the amount of items to “move” by.
*
*/
Integer offset;
/**
*
* A flag that will set the order of the pagination
*
*/
Boolean ascending;
/**
*
* A unique id that can be used as a “pivot” of where you are in the set.
*
*/
String cursor;
/**
*
* The parameter to sort by (EXPERIMENTAL).
*
*/
String sort;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy