Show / Hide Table of Contents

Class SplitInt64

A representation of an int64, n, that is immune to precision loss when encoded in JSON.

Inheritance
object
SplitInt64
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX