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

com.ullink.slack.simpleslackapi.impl.SlackJSONBlockFormatter Maven / Gradle / Ivy

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