package pins
Type Members
- case class SlackApiPinsAddRequest(channel: SlackChannelId, timestamp: String) extends Product with Serializable
Request of https://api.slack.com/methods/pins.add
- case class SlackApiPinsAddResponse() extends Product with Serializable
Response of https://api.slack.com/methods/pins.add
- case class SlackApiPinsListRequest(channel: SlackChannelId) extends Product with Serializable
Request of https://api.slack.com/methods/pins.list
- case class SlackApiPinsListResponse(items: List[SlackPinItem]) extends Product with Serializable
Response of https://api.slack.com/methods/pins.list
- case class SlackApiPinsRemoveRequest(channel: SlackChannelId, timestamp: String) extends Product with Serializable
Request of https://api.slack.com/methods/pins.remove
- case class SlackApiPinsRemoveResponse() extends Product with Serializable
Response of https://api.slack.com/methods/pins.remove
- case class SlackPinItem(channel: SlackChannelId, created: SlackDateTime, created_by: String, message: SlackPinnedMessage) extends Product with Serializable