
com.github.seratch.jslack.api.methods.request.groups.GroupsSetTopicRequest 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 GroupsSetTopicRequest implements SlackApiRequest {
/**
* Authentication token. Requires scope: `groups:write`
*/
private String token;
/**
* The new topic
*/
private String channel;
/**
* Private channel to set the topic of
*/
private String topic;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy