google.protobufstruct.protoValue
MessageValue represents a dynamically typed value which can be either
null, a number, a string, a boolean, a recursive struct value, or a
list of values. A producer of value is expected to set one of these
variants. Absence of any variant indicates an error.
The JSON representation for Value is JSON value.
| Field | Type | Number | Description |
|---|---|---|---|
| kindOneOf | The kind of value. | ||
| null_value | NullValue google.protobuf.NullValue | 1 | Represents a null value. |
| number_value | double | 2 | Represents a double value. |
| string_value | string | 3 | Represents a string value. |
| bool_value | bool | 4 | Represents a boolean value. |
| struct_value | Struct google.protobuf.Struct | 5 | Represents a structured value. |
| list_value | ListValue google.protobuf.ListValue | 6 | Represents a repeated |