Skip to content

Instantly share code, notes, and snippets.

@sgraham785
Created August 19, 2017 16:49
Show Gist options
  • Save sgraham785/ec0b2008ceaa7d136e6ac17bbcb2edae to your computer and use it in GitHub Desktop.
Save sgraham785/ec0b2008ceaa7d136e6ac17bbcb2edae to your computer and use it in GitHub Desktop.
message ObjectId {
// Unordered map of dynamically typed values.
map<string, Value> id = 1;
string _bsontype = 2; // should return "ObjectId"
}
// The JSON representation for `Value` is JSON value.
enum Value {
VALUE = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment