
com.hubspot.slack.client.models.response.chat.ChatScheduleMessageResponseIF Maven / Gradle / Ivy
package com.hubspot.slack.client.models.response.chat;
import com.fasterxml.jackson.databind.PropertyNamingStrategies.SnakeCaseStrategy;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import com.hubspot.immutables.style.HubSpotStyle;
import com.hubspot.slack.client.models.response.SlackResponse;
import java.util.Map;
import org.immutables.value.Value.Immutable;
@Immutable
@HubSpotStyle
@JsonNaming(SnakeCaseStrategy.class)
public interface ChatScheduleMessageResponseIF extends SlackResponse {
String getChannel();
String getScheduledMessageId();
String getPostAt();
Map getMessage();
}