fieldmask-utils icon indicating copy to clipboard operation
fieldmask-utils copied to clipboard

Protobuf Field Mask Go utils

Results 5 fieldmask-utils issues
Sort by recently updated
recently updated
newest added

time.Time transport to empty map by structx.StructToMapByFieldMask ![image](https://user-images.githubusercontent.com/44628981/189830700-9d5bf776-6d7a-42dd-a607-cad600229192.png) println(fmt.Sprintf("%T", updateField["CreateTime"]))----------> map[string]interface {}

This PR addresses the discussion raised in #41 I ended up copying the `CamelCase` code from the function to my personal open source project to avoid code duplications due to...

# Context I'm trying to convert a proto message to map using this library in order to perform a `PATCH` update in an endpoint. I'm getting an empty map instead...

is it possible to support protobuf wrapper values for get the value directly.for now feildmask-util lib,will get a `{"value":somevalue}`

The following new test case for `copy.go` is failing. I added it in my local copy. I wonder what the correct behavior should be in this case. ``` func TestStructToStruct_NestedNilParentStruct_NonNilDst(t...