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

com.slack.api.scim.request.UsersSearchRequest Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.scim.request;

import com.slack.api.scim.SCIMApiRequest;
import lombok.Builder;
import lombok.Data;

@Data
@Builder
public class UsersSearchRequest implements SCIMApiRequest {
    private String token;
    // https://api.slack.com/scim#filter
    private String filter;
    // https://api.slack.com/changelog/2019-06-have-scim-will-paginate
    private Integer count;
    private Integer startIndex;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy