package opc.ua.services.common;

import java.util.Date;

import opc.ua.addressspace.datatypes.NodeId;

public class AggregateFilter {

	private Date startTime;
	private NodeId aggregateType;
	/** Duration */
	private long processingInterval;
	private AggregateConfiguration aggregateConfiguration;
	
	private class AggregateConfiguration {
		private boolean useSeverCapabilitiesDefaults;
		private boolean treatUncertainAsBad;
		private byte percentDataBad;
		private byte percentDataGood;
		private boolean steppedSlopedExtrapolation;
	}
}
