type github.com/golang/protobuf/ptypes/struct.Value

10 uses

	github.com/golang/protobuf/ptypes/struct (current package)
		struct.pb.go#L23: type Value = structpb.Value

	cloud.google.com/go/logging
		logging.go#L738: 	fields := map[string]*structpb.Value{}
		logging.go#L745: func jsonValueToStructValue(v interface{}) *structpb.Value {
		logging.go#L748: 		return &structpb.Value{Kind: &structpb.Value_BoolValue{BoolValue: x}}
		logging.go#L750: 		return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: x}}
		logging.go#L752: 		return &structpb.Value{Kind: &structpb.Value_StringValue{StringValue: x}}
		logging.go#L754: 		return &structpb.Value{Kind: &structpb.Value_NullValue{}}
		logging.go#L756: 		return &structpb.Value{Kind: &structpb.Value_StructValue{StructValue: jsonMapToProtoStruct(x)}}
		logging.go#L758: 		var vals []*structpb.Value
		logging.go#L762: 		return &structpb.Value{Kind: &structpb.Value_ListValue{ListValue: &structpb.ListValue{Values: vals}}}