public TimeFormatExtractionFunction(string format = null, string timeZone = "UTC", string locale = null, IGranularitySpec granularity = null, bool?asMillis = null)
 {
     Format      = format;
     TimeZone    = timeZone;
     Locale      = locale;
     Granularity = granularity;
     AsMillis    = asMillis;
 }
예제 #2
0
        public ITimeseriesQueryDescriptor Granularity(IGranularitySpec granularitySpec)
        {
            GranularityValue = granularitySpec;

            return(this);
        }
예제 #3
0
        public IGroupByQueryDescriptor Granularity(IGranularitySpec granularitySpec)
        {
            GranularityValue = granularitySpec;

            return(this);
        }