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

io.apicurio.multitenant.api.datamodel.RegistryTenantList Maven / Gradle / Ivy

The newest version!

package io.apicurio.multitenant.api.datamodel;

import java.util.ArrayList;
import java.util.List;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * Describes the response received when searching for tenants.
 * 
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
    "items",
    "count"
})
@Generated("jsonschema2pojo")
public class RegistryTenantList {

    /**
     * The RegistryTenants returned in the result set.
     * (Required)
     * 
     */
    @JsonProperty("items")
    @JsonPropertyDescription("The RegistryTenants returned in the result set.")
    private List items = new ArrayList();
    /**
     * The total number of items that matched the query that produced the result set (may be 
     * more than the number of items in the result set).
     * (Required)
     * 
     */
    @JsonProperty("count")
    @JsonPropertyDescription("The total number of items that matched the query that produced the result set (may be \nmore than the number of items in the result set).")
    private Integer count;

    /**
     * The RegistryTenants returned in the result set.
     * (Required)
     * 
     */
    @JsonProperty("items")
    public List getItems() {
        return items;
    }

    /**
     * The RegistryTenants returned in the result set.
     * (Required)
     * 
     */
    @JsonProperty("items")
    public void setItems(List items) {
        this.items = items;
    }

    /**
     * The total number of items that matched the query that produced the result set (may be 
     * more than the number of items in the result set).
     * (Required)
     * 
     */
    @JsonProperty("count")
    public Integer getCount() {
        return count;
    }

    /**
     * The total number of items that matched the query that produced the result set (may be 
     * more than the number of items in the result set).
     * (Required)
     * 
     */
    @JsonProperty("count")
    public void setCount(Integer count) {
        this.count = count;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy