com.mailgun.model.seedlist.SeedListsResponse Maven / Gradle / Ivy
package com.mailgun.model.seedlist;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.mailgun.model.Paging;
import lombok.Builder;
import lombok.Value;
import lombok.extern.jackson.Jacksonized;
/**
*
* Seed Lists Response.
*
*
* @see Seed Lists
*/
@Value
@Jacksonized
@Builder
@JsonIgnoreProperties(ignoreUnknown = true)
public class SeedListsResponse {
/**
*
* A list of {@link SeedListItem}.
*
*/
List items;
/**
*
* Provides pagination urls.
*
* {@link Paging}
*/
Paging paging;
/**
*
* The total number of seed lists.
*
*/
Integer total;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy