Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add additional fields for repeated time, duration, and wrapper messages #276

Merged
merged 1 commit into from
Mar 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions proto/test/v1/proto2/test_all_types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,23 @@ message TestAllTypes {
repeated string repeated_cord = 54 [ctype = CORD];
repeated NestedMessage repeated_lazy_message = 55 [lazy = true];

// Repeated wellknown.
repeated google.protobuf.Any repeated_any = 120;
repeated google.protobuf.Duration repeated_duration = 121;
repeated google.protobuf.Timestamp repeated_timestamp = 122;
repeated google.protobuf.Struct repeated_struct = 123;
repeated google.protobuf.Value repeated_value = 124;
repeated google.protobuf.Int64Value repeated_int64_wrapper = 125;
repeated google.protobuf.Int32Value repeated_int32_wrapper = 126;
repeated google.protobuf.DoubleValue repeated_double_wrapper = 127;
repeated google.protobuf.FloatValue repeated_float_wrapper = 128;
repeated google.protobuf.UInt64Value repeated_uint64_wrapper = 129;
repeated google.protobuf.UInt32Value repeated_uint32_wrapper = 130;
repeated google.protobuf.StringValue repeated_string_wrapper = 131;
repeated google.protobuf.BoolValue repeated_bool_wrapper = 132;
repeated google.protobuf.BytesValue repeated_bytes_wrapper = 133;
repeated google.protobuf.ListValue repeated_list_value = 134;

// Map
map<string, string> map_string_string = 61;
map<int64, NestedTestAllTypes> map_int64_nested_type = 62;
Expand Down
Loading