Class DoubleMatcher
Specifies the way to match a double value.
Implements
Inherited Members
Namespace: Google.Apis.TrafficDirectorService.v3.Data
Assembly: Google.Apis.TrafficDirectorService.v3.dll
Syntax
public class DoubleMatcher : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Exact
If specified, the input double value must be equal to the value specified here.
Declaration
[JsonProperty("exact")]
public virtual double? Exact { get; set; }
Property Value
Type | Description |
---|---|
double? |
Range
If specified, the input double value must be in the range specified here. Note: The range is using half-open interval semantics [start, end).
Declaration
[JsonProperty("range")]
public virtual DoubleRange Range { get; set; }
Property Value
Type | Description |
---|---|
DoubleRange |