
com.github.seratch.jslack.api.scim.response.GroupsSearchResponse Maven / Gradle / Ivy
package com.github.seratch.jslack.api.scim.response;
import com.github.seratch.jslack.api.scim.SCIMApiResponse;
import com.github.seratch.jslack.api.scim.model.Group;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import java.util.List;
@Data
public class GroupsSearchResponse implements SCIMApiResponse {
private Integer totalResults;
private Integer itemsPerPage;
private Integer startIndex;
private List schemas;
@SerializedName("Resources")
private List resources;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy