package de.jatitv.commandguiv2.Spigot.objects.functions; import java.util.List; public class Function { public String key; public Boolean empty; public Integer itemAmount; public Boolean playerHead_Enable; public Boolean base64_Enable; public String base64Value; public Boolean playerWhoHasOpenedTheGUI; public String playerName; public String item; public String name; public List lore; public Boolean customSound_Enable; public Boolean customSound_NoSound; public String customSound_Sound; public Boolean cost_Enable; public Double price; public Boolean command_Enable; public Boolean command_BungeeCommand; public Boolean commandAsConsole; public Boolean serverChange; public String serverChangeServer; public List command; public Boolean openGUI_Enable; public String openGUI; public Boolean togglePermission; public String togglePermissionPerm; public Boolean toggleUseItem; public Boolean message_Enable; public List message; public Boolean setConfigEnable; public String configFilePath; public String configOptionPath; public String configOptionPremat; // public Boolean ConfigChatInput; public String configStringValueLeft; public Boolean configBooleanValueLeft; public Integer configIntegerValueLeft; public Double configDoubleValueLeft; public List configListValueLeft; public String configStringValueRight; public Boolean configBooleanValueRight; public Integer configIntegerValueRight; public Double configDoubleValueRight; public List configListValueRight; public Boolean pluginReloadEnable; public String pluginReloadCommand; public Function(String key, Boolean empty, Integer itemAmount, Boolean playerHead_Enable, Boolean base64Value_Enable, String base64Value, Boolean playerWhoHasOpenedTheGUI, String playerName, String item, String name, List lore, Boolean customSound_Enable, Boolean customSound_NoSound, String customSound_Sound, Boolean cost_Enable, Double price, Boolean command_Enable, Boolean command_BungeeCommand, Boolean commandAsConsole, List command, Boolean serverChange, String serverChangeServer, Boolean openGUI_Enable, String openGUI, Boolean togglePermission, String togglePermissionPerm, Boolean toggleUseItem, Boolean message_Enable, List message, Boolean setConfigEnable, String configFilePath, String configOptionPath, String configOptionPremat, String configStringValueLeft, Boolean configBooleanValueLeft, Integer configIntegerValueLeft, Double configDoubleValueLeft, List configListValueLeft, String configStringValueRight, Boolean configBooleanValueRight, Integer configIntegerValueRight, Double configDoubleValueRight, List configListValueRight, Boolean pluginReloadEnable, String pluginReloadCommand) { this.key = key; this.empty = empty; this.itemAmount = itemAmount; this.playerHead_Enable = playerHead_Enable; this.base64_Enable = base64Value_Enable; this.base64Value = base64Value; this.playerWhoHasOpenedTheGUI = playerWhoHasOpenedTheGUI; this.playerName = playerName; this.item = item; this.name = name; this.lore = lore; this.customSound_Enable = customSound_Enable; this.customSound_NoSound = customSound_NoSound; this.customSound_Sound = customSound_Sound; this.cost_Enable = cost_Enable; this.price = price; this.command_Enable = command_Enable; this.command_BungeeCommand = command_BungeeCommand; this.commandAsConsole = commandAsConsole; this.command = command; this.serverChange = serverChange; this.serverChangeServer = serverChangeServer; this.openGUI_Enable = openGUI_Enable; this.openGUI = openGUI; this.togglePermission = togglePermission; this.togglePermissionPerm = togglePermissionPerm; this.toggleUseItem = toggleUseItem; this.message_Enable = message_Enable; this.message = message; this.setConfigEnable = setConfigEnable; this.configFilePath = configFilePath; this.configOptionPath = configOptionPath; this.configOptionPremat = configOptionPremat; // this.ConfigChatInput = ConfigChatInput; this.configStringValueLeft = configStringValueLeft; this.configBooleanValueLeft = configBooleanValueLeft; this.configIntegerValueLeft = configIntegerValueLeft; this.configDoubleValueLeft = configDoubleValueLeft; this.configListValueLeft = configListValueLeft; this.configStringValueRight = configStringValueRight; this.configBooleanValueRight = configBooleanValueRight; this.configIntegerValueRight = configIntegerValueRight; this.configDoubleValueRight = configDoubleValueRight; this.configListValueRight = configListValueRight; this.pluginReloadEnable = pluginReloadEnable; this.pluginReloadCommand = pluginReloadCommand; } }