package net.t2code.autoresponse.Spigot.objects; import java.util.List; public class ResponsesObject { public Boolean enable; public String responseKey; public Boolean contains; public Boolean commandEnable; public Boolean permNecessary; public String permission; public Boolean commandAsConsole; public Boolean bungeeCommand; public List command; public Boolean messageEnable; public List messages; public Boolean textBuilder; public String hover; public Boolean clickEvent; public String action; public String actionValue; public ResponsesObject(Boolean enable, String responseKey, Boolean contains, Boolean permNecessary, String permission, Boolean commandEnable, Boolean commandAsConsole, Boolean bungeeCommand, List command, Boolean messageEnable, List messages, Boolean textBuilder, String hover, Boolean clickEvent, String action, String actionValue) { this.enable = enable; this.responseKey = responseKey; this.contains=contains; this.permNecessary = permNecessary; this.permission = permission; this.commandEnable = commandEnable; this.commandAsConsole = commandAsConsole; this.bungeeCommand = bungeeCommand; this.command = command; this.messageEnable = messageEnable; this.messages = messages; this.textBuilder = textBuilder; this.hover = hover; this.clickEvent = clickEvent; this.action = action; this.actionValue = actionValue; } }