T2C-AutoResponse/src/main/java/net/t2code/autoresponse/Spigot/objects/ResponsesObject.java

80 lines
2.9 KiB
Java

package net.t2code.autoresponse.Spigot.objects;
import java.util.List;
public class ResponsesObject {
public Boolean enable;
public List<String> responseKeys;
public Boolean contains;
public Boolean commandEnable;
public Boolean permNecessary;
public String permission;
public Boolean commandAsConsole;
public Boolean bungeeCommand;
public List<String> command;
public Boolean messageEnable;
public List<String> messages;
public Boolean textBuilder;
public String hover;
public Boolean clickEvent;
public String action;
public String actionValue;
public Boolean protectionGameModeEnable;
public String protectionGameModeMode;
public List<String> protectionGameModeList;
public Boolean protectionWorldEnable;
public String protectionWorldMode;
public List<String> protectionWorldList;
public ResponsesObject(Boolean enable,
List<String> responseKeys,
Boolean contains,
Boolean permNecessary,
String permission,
Boolean commandEnable,
Boolean commandAsConsole,
Boolean bungeeCommand,
List<String> command,
Boolean messageEnable,
List<String> messages,
Boolean textBuilder,
String hover,
Boolean clickEvent,
String action,
String actionValue,
Boolean protectionGameModeEnable,
String protectionGameModeMode,
List<String> protectionGameModeList,
Boolean protectionWorldEnable,
String protectionWorldMode,
List<String> protectionWorldList) {
this.enable = enable;
this.responseKeys = responseKeys;
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;
this.protectionGameModeEnable = protectionGameModeEnable;
this.protectionGameModeMode = protectionGameModeMode;
this.protectionGameModeList = protectionGameModeList;
this.protectionWorldEnable = protectionWorldEnable;
this.protectionWorldMode = protectionWorldMode;
this.protectionWorldList = protectionWorldList;
}
}