Show / Hide Table of Contents

Class NumericValue

To represent a number.

Inheritance
System.Object
NumericValue
Implements
Google.Protobuf.IMessage<NumericValue>
System.IEquatable<NumericValue>
Google.Protobuf.IDeepCloneable<NumericValue>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
Namespace: Google.Analytics.Data.V1Beta
Assembly: Google.Analytics.Data.V1Beta.dll
Syntax
public sealed class NumericValue : IMessage<NumericValue>, IEquatable<NumericValue>, IDeepCloneable<NumericValue>, IBufferMessage, IMessage

Constructors

NumericValue()

Declaration
public NumericValue()

NumericValue(NumericValue)

Declaration
public NumericValue(NumericValue other)
Parameters
Type Name Description
NumericValue other

Properties

DoubleValue

Double value

Declaration
public double DoubleValue { get; set; }
Property Value
Type Description
System.Double

Int64Value

Integer value

Declaration
public long Int64Value { get; set; }
Property Value
Type Description
System.Int64

OneValueCase

Declaration
public NumericValue.OneValueOneofCase OneValueCase { get; }
Property Value
Type Description
NumericValue.OneValueOneofCase
In This Article
Back to top