blob: 482b80dde59d348685180a471dda228c463c4e29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/struct.proto
namespace Google\Protobuf;
/**
* `NullValue` is a singleton enumeration to represent the null value for the
* `Value` type union.
* The JSON representation for `NullValue` is JSON `null`.
*
* Protobuf type <code>google.protobuf.NullValue</code>
*/
class NullValue
{
/**
* Null value.
*
* Generated from protobuf enum <code>NULL_VALUE = 0;</code>
*/
const NULL_VALUE = 0;
}
|