Class SplitInt64
A representation of an int64, n, that is immune to precision loss when encoded in JSON.
Implements
Inherited Members
Namespace: Google.Apis.Dataflow.v1b3.Data
Assembly: Google.Apis.Dataflow.v1b3.dll
Syntax
public class SplitInt64 : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
HighBits
The high order bits, including the sign: n >> 32.
Declaration
[JsonProperty("highBits")]
public virtual int? HighBits { get; set; }
Property Value
Type | Description |
---|---|
int? |
LowBits
The low order bits: n & 0xffffffff.
Declaration
[JsonProperty("lowBits")]
public virtual long? LowBits { get; set; }
Property Value
Type | Description |
---|---|
long? |