
com.github.seratch.jslack.api.methods.request.groups.GroupsCreateRequest Maven / Gradle / Ivy
package com.github.seratch.jslack.api.methods.request.groups;
import com.github.seratch.jslack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
public class GroupsCreateRequest implements SlackApiRequest {
/**
* Authentication token. Requires scope: `groups:write`
*/
private String token;
/**
* Name of private channel to create
*/
private String name;
/**
* Whether to return errors on invalid channel name instead of modifying it to meet the specified criteria.
*/
private boolean validate;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy