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

io.permit.sdk.openapi.models.PaginatedResultConditionSetRead Maven / Gradle / Ivy

There is a newer version: 983f46e
Show newest version

package io.permit.sdk.openapi.models;

import java.util.List;
import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;


/**
 * PaginatedResult[ConditionSetRead]
 * 

* * */ @Generated("jsonschema2pojo") public class PaginatedResultConditionSetRead { /** * Data *

* List of Condition Sets * (Required) * */ @SerializedName("data") @Expose public List data; /** * Total Count *

* * (Required) * */ @SerializedName("total_count") @Expose public Integer totalCount; /** * Page Count *

* * */ @SerializedName("page_count") @Expose public Integer pageCount = 0; /** * No args constructor for use in serialization * */ public PaginatedResultConditionSetRead() { } /** * * @param data * @param totalCount */ public PaginatedResultConditionSetRead(List data, Integer totalCount) { super(); this.data = data; this.totalCount = totalCount; } public PaginatedResultConditionSetRead withData(List data) { this.data = data; return this; } public PaginatedResultConditionSetRead withTotalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public PaginatedResultConditionSetRead withPageCount(Integer pageCount) { this.pageCount = pageCount; return this; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy