package net.t2code.autoresponse.Spigot.objects; import java.util.List; public class ResponsesObject { public Boolean enable; public List responseKeys; public Boolean contains; public Boolean blockKeyMessage; public Boolean commandEnable; public Boolean permNecessary; public String permission; public Boolean commandAsConsole; public Boolean bungeeCommand; public List command; public Boolean messageEnable; public Boolean messageGlobal; public Boolean messageGlobalBungee; public List messages; public Boolean protectionGameModeEnable; public String protectionGameModeMode; public List protectionGameModeList; public Boolean protectionWorldEnable; public String protectionWorldMode; public List protectionWorldList; public ResponsesObject(Boolean enable, List responseKeys, Boolean contains, Boolean blockKeyMessage, Boolean permNecessary, String permission, Boolean commandEnable, Boolean commandAsConsole, Boolean bungeeCommand, List command, Boolean messageEnable, Boolean messageGlobal, Boolean messageGlobalBungee, List messages, Boolean protectionGameModeEnable, String protectionGameModeMode, List protectionGameModeList, Boolean protectionWorldEnable, String protectionWorldMode, List protectionWorldList) { this.enable = enable; this.responseKeys = responseKeys; this.contains=contains; this.blockKeyMessage=blockKeyMessage; this.permNecessary = permNecessary; this.permission = permission; this.commandEnable = commandEnable; this.commandAsConsole = commandAsConsole; this.bungeeCommand = bungeeCommand; this.command = command; this.messageEnable = messageEnable; this.messageGlobal = messageGlobal; this.messageGlobalBungee = messageGlobalBungee; this.messages = messages; this.protectionGameModeEnable = protectionGameModeEnable; this.protectionGameModeMode = protectionGameModeMode; this.protectionGameModeList = protectionGameModeList; this.protectionWorldEnable = protectionWorldEnable; this.protectionWorldMode = protectionWorldMode; this.protectionWorldList = protectionWorldList; } }