Class DateRange
The date time range class used in filters
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class DateRange
Properties
From
The from value: it can be a datetime string or a pattern now(+-)(int)(YMDHm).
Declaration
[JsonProperty("from", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string From { get; set; }
Property Value
string |
Names
Language specific range names.
Declaration
[JsonProperty("names", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public TranslatedStringDictionary Names { get; set; }
Property Value
TranslatedStringDictionary |
To
The to value: it can be a datetime string or a pattern now(+-)(int)(YMDHm).
Declaration
[JsonProperty("to", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string To { get; set; }
Property Value
string |