
com.hubspot.slack.client.models.events.conversation.SlackConversationEventWithChannel Maven / Gradle / Ivy
package com.hubspot.slack.client.models.events.conversation;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.hubspot.slack.client.models.SlackChannel;
import org.immutables.value.Value;
public interface SlackConversationEventWithChannel extends SlackConversationEventCore {
SlackChannel getChannel();
@JsonIgnore
@Value.Derived
default String getChannelId() {
return getChannel().getId();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy