You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message Student {
StudentId id = 1;
FullName name = 2;
}
Where StudentID suddenly changes to StudenId.
I guess the correct one is StudentId, because it is safe for various CamelCase to snake_case converters (including your own in JSON Formatter, e.g. C# FromJsonName) would produce student_id instead of student_i_d.
The text was updated successfully, but these errors were encountered:
Your example shows
Later on subsequent example:
Where StudentID suddenly changes to StudenId.
I guess the correct one is StudentId, because it is safe for various CamelCase to snake_case converters (including your own in JSON Formatter, e.g. C# FromJsonName) would produce
student_id
instead ofstudent_i_d
.The text was updated successfully, but these errors were encountered: