import xyz.etztech.embed.Author; import xyz.etztech.embed.Embed; import xyz.etztech.embed.Webhook; import java.time.OffsetDateTime; public class Test { public static void main(String[] args) { Embed embed = new Embed() .color(3306460) .timestamp(OffsetDateTime.now()) .description("Etzelia found some \"diamond\" ore") .author(new Author("Etzelia", "", "https://minotar.net/helm/Etzelia/100.png", "")); Webhook webhook = new Webhook("@here", embed); System.out.println(webhook); } }