XExprSpec Data Type

Specification of single expression. Specification consists of required expression field, and optional start and end times associated with expression. Expression is valid between start time and end time, if both are specified. If only start_time is specified, is valid from start_time to till date. If only end_time is specified, is valid upto date specified, from any time. If no start time, end time are specified, the expression is always valid.

Java class for x_expr_spec complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="x_expr_spec">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="expr" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="start_time" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
       <attribute name="end_time" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
     </restriction>
   </complexContent>
 </complexType>
 

Properties
name data type description
expr string
start_time number
end_time number

Example

{
  "expr" : "...",
  "start_time" : 12345,
  "end_time" : 12345
}