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

com.slack.api.model.event.MessageChannelPostingPermissionsEvent Maven / Gradle / Ivy

There is a newer version: 1.44.1
Show newest version
package com.slack.api.model.event;

import lombok.Data;

/**
 * https://api.slack.com/events/message/channel_posting_permissions
 */
@Data
public class MessageChannelPostingPermissionsEvent implements Event {

    public static final String TYPE_NAME = "message";
    public static final String SUBTYPE_NAME = "channel_posting_permissions";

    private final String type = TYPE_NAME;
    private final String subtype = SUBTYPE_NAME;

    private String user;
    private String channel;
    private String channelType; // "channel"

    private String text;

    private String ts;
    private String eventTs;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy