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

com.mailgun.model.seedlist.SeedListsPageRequest Maven / Gradle / Ivy

Go to download

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