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

com.auth0.json.mgmt.organizations.OrganizationsPage Maven / Gradle / Ivy

There is a newer version: 2.12.0
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy