google.protobuf.Field.Kind */ class Kind { /** * Field type unknown. * * Generated from protobuf enum TYPE_UNKNOWN = 0; */ const TYPE_UNKNOWN = 0; /** * Field type double. * * Generated from protobuf enum TYPE_DOUBLE = 1; */ const TYPE_DOUBLE = 1; /** * Field type float. * * Generated from protobuf enum TYPE_FLOAT = 2; */ const TYPE_FLOAT = 2; /** * Field type int64. * * Generated from protobuf enum TYPE_INT64 = 3; */ const TYPE_INT64 = 3; /** * Field type uint64. * * Generated from protobuf enum TYPE_UINT64 = 4; */ const TYPE_UINT64 = 4; /** * Field type int32. * * Generated from protobuf enum TYPE_INT32 = 5; */ const TYPE_INT32 = 5; /** * Field type fixed64. * * Generated from protobuf enum TYPE_FIXED64 = 6; */ const TYPE_FIXED64 = 6; /** * Field type fixed32. * * Generated from protobuf enum TYPE_FIXED32 = 7; */ const TYPE_FIXED32 = 7; /** * Field type bool. * * Generated from protobuf enum TYPE_BOOL = 8; */ const TYPE_BOOL = 8; /** * Field type string. * * Generated from protobuf enum TYPE_STRING = 9; */ const TYPE_STRING = 9; /** * Field type group. Proto2 syntax only, and deprecated. * * Generated from protobuf enum TYPE_GROUP = 10; */ const TYPE_GROUP = 10; /** * Field type message. * * Generated from protobuf enum TYPE_MESSAGE = 11; */ const TYPE_MESSAGE = 11; /** * Field type bytes. * * Generated from protobuf enum TYPE_BYTES = 12; */ const TYPE_BYTES = 12; /** * Field type uint32. * * Generated from protobuf enum TYPE_UINT32 = 13; */ const TYPE_UINT32 = 13; /** * Field type enum. * * Generated from protobuf enum TYPE_ENUM = 14; */ const TYPE_ENUM = 14; /** * Field type sfixed32. * * Generated from protobuf enum TYPE_SFIXED32 = 15; */ const TYPE_SFIXED32 = 15; /** * Field type sfixed64. * * Generated from protobuf enum TYPE_SFIXED64 = 16; */ const TYPE_SFIXED64 = 16; /** * Field type sint32. * * Generated from protobuf enum TYPE_SINT32 = 17; */ const TYPE_SINT32 = 17; /** * Field type sint64. * * Generated from protobuf enum TYPE_SINT64 = 18; */ const TYPE_SINT64 = 18; } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Kind::class, \Google\Protobuf\Field_Kind::class);