TypedValue
class TypedValue extends Message
A single strongly-typed value.
Protobuf type Google\Monitoring\V3\TypedValue
Properties
protected | $value |
Methods
No description
A Boolean value: true
or false
.
A Boolean value: true
or false
.
A 64-bit integer. Its range is approximately ±9.2x1018.
A 64-bit integer. Its range is approximately ±9.2x1018.
A 64-bit double-precision floating-point number. Its magnitude is approximately ±10±300 and it has 16 significant digits of precision.
A 64-bit double-precision floating-point number. Its magnitude is approximately ±10±300 and it has 16 significant digits of precision.
A variable-length string value.
A variable-length string value.
A distribution value.
No description
Details
at line 20
__construct()
at line 31
bool
getBoolValue()
A Boolean value: true
or false
.
Generated from protobuf field bool bool_value = 1;
at line 42
setBoolValue(bool $var)
A Boolean value: true
or false
.
Generated from protobuf field bool bool_value = 1;
at line 54
int|string
getInt64Value()
A 64-bit integer. Its range is approximately ±9.2x1018.
Generated from protobuf field int64 int64_value = 2;
at line 65
setInt64Value(int|string $var)
A 64-bit integer. Its range is approximately ±9.2x1018.
Generated from protobuf field int64 int64_value = 2;
at line 79
float
getDoubleValue()
A 64-bit double-precision floating-point number. Its magnitude is approximately ±10±300 and it has 16 significant digits of precision.
Generated from protobuf field double double_value = 3;
at line 92
setDoubleValue(float $var)
A 64-bit double-precision floating-point number. Its magnitude is approximately ±10±300 and it has 16 significant digits of precision.
Generated from protobuf field double double_value = 3;
at line 104
string
getStringValue()
A variable-length string value.
Generated from protobuf field string string_value = 4;
at line 115
setStringValue(string $var)
A variable-length string value.
Generated from protobuf field string string_value = 4;
at line 127
Distribution
getDistributionValue()
A distribution value.
Generated from protobuf field .google.api.Distribution distribution_value = 5;
at line 138
setDistributionValue(Distribution $var)
A distribution value.
Generated from protobuf field .google.api.Distribution distribution_value = 5;