public sealed class Value : IMessage<Value>, IEquatable<Value>, IDeepCloneable<Value>, IBufferMessage, IMessage
Set of primitive values supported by the system. Note that for the purposes of inspection or transformation, the number of bytes considered to comprise a 'Value' is based on its representation as a UTF-8 encoded string. For example, if 'integer_value' is set to 123456789, the number of bytes would be counted as 9, even though an int64 only holds up to 8 bytes of data.
Implements
IMessage < Value >, IEquatable < Value >, IDeepCloneable < Value >, IBufferMessage , IMessageNamespace
Google.Cloud.Dlp.V2Assembly
Google.Cloud.Dlp.V2.dll
Constructors
Value()
public Value()
Value(Value)
public Value(Value other)
Properties
BooleanValue
public bool BooleanValue { get; set; }
boolean
DateValue
public Date DateValue { get; set; }
date
DayOfWeekValue
public DayOfWeek DayOfWeekValue { get; set; }
day of week
FloatValue
public double FloatValue { get; set; }
float
IntegerValue
public long IntegerValue { get; set; }
integer
System.Int64
StringValue
public string StringValue { get; set; }
string
TimestampValue
public Timestamp TimestampValue { get; set; }
timestamp
TimeValue
public TimeOfDay TimeValue { get; set; }
time of day
TypeCase
public Value.TypeOneofCase TypeCase { get; }

