DateRange

Type:  
Abstract:  no
Status:  Active
Java Class:  DateRange
Represents a date range with lower and upper limits. Range can include only lower or only upper limit.
Available Fields:
from
Type: Date
XML Representation: attribute
Attributes:
Default Value
Lower limit of the date range. Dates below this value are not included in the range.
to
Type: Date
XML Representation: attribute
Attributes:
Default Value
Upper limit of the date range. Dates above this value are not included in the range.

XML Sample:

< from="2012-01-01"  to="2012-01-31" />

"< from=\"2012-01-01\" to=\"2012-01-31\" />"

JSON Sample:

{
  "from": "2012-01-01",
  "to": "2012-01-31"
}

XURL Sample:

?from=2012-01-01&to=2012-01-31&
from=2012-01-01
to=2012-01-31