com.auth0.json.mgmt.organizations.OrganizationsPage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auth0 Show documentation
Show all versions of auth0 Show documentation
Java client library for the Auth0 platform.
package com.auth0.json.mgmt.organizations;
import com.auth0.json.mgmt.Page;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.List;
/**
* Represents a page of an Organization.
* @see Organization
* @see com.auth0.client.mgmt.OrganizationsEntity
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonDeserialize(using = OrganizationsPageDeserializer.class)
public class OrganizationsPage extends Page {
public OrganizationsPage(List items) {
super(items);
}
/**
* @deprecated use {@linkplain OrganizationsPage#OrganizationsPage(Integer, Integer, Integer, Integer, String, List)} instead.
*/
@Deprecated
public OrganizationsPage(Integer start, Integer length, Integer total, Integer limit, List items) {
super(start, length, total, limit, items);
}
public OrganizationsPage(Integer start, Integer length, Integer total, Integer limit, String next, List items) {
super(start, length, total, limit, next, items);
}
}