package com.baidubce.services.ruleengine.model; import com.baidubce.model.GenericAccountRequest; import java.util.List; /** * Created by yuanyoujun on 2016/10/9. */ public class CreateRuleRequest extends GenericAccountRequest { private String name; private String description; private String select; private String from; private String where; private String endpoint; private List<Destination> destinations; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getSelect() { return select; } public void setSelect(String select) { this.select = select; } public String getFrom() { return from; } public void setFrom(String from) { this.from = from; } public String getWhere() { return where; } public void setWhere(String where) { this.where = where; } public String getEndpoint() { return endpoint; } public void setEndpoint(String endpoint) { this.endpoint = endpoint; } public List<Destination> getDestinations() { return destinations; } public void setDestinations(List<Destination> destinations) { this.destinations = destinations; } }