com.ullink.slack.simpleslackapi.impl.SlackJSONBlockFormatter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleslackapi Show documentation
Show all versions of simpleslackapi Show documentation
A simple API to build bot running on Slack
The newest version!
package com.ullink.slack.simpleslackapi.impl;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.ullink.slack.simpleslackapi.blocks.Block;
import java.util.List;
class SlackJSONBlockFormatter {
public static String encodeBlocks(List blocks) {
GsonBuilder builder = new GsonBuilder();
Gson gson = builder.create();
return gson.toJson(blocks);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy