/oneof.proto Secret
Created
January 31, 2022 13:47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax = "proto3"; | |
message Author { | |
string title = 1; | |
string author = 2; | |
string isbn13 = 3; | |
int32 page = 4; | |
oneof phone_oneof { | |
string home = 5; | |
string office = 6; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment