We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1563192 commit f988440Copy full SHA for f988440
protobuf/src/main/proto/nullables/protobuf/model/credit_card.proto
@@ -0,0 +1,18 @@
1
+syntax = "proto2";
2
+
3
+package nullables.protobuf.model;
4
5
+option java_package = "io.nullables.api.sample.protobuf";
6
7
+option java_multiple_files = true;
8
+option optimize_for = CODE_SIZE;
9
+option java_outer_classname = "CardData";
10
11
+message CreditCard {
12
+ required string name = 1;
13
+ required string country = 2;
14
+ required string currency = 3;
15
+ required string cardNumber = 4;
16
+ required bool blocked = 5;
17
+ required string type = 6;
18
+}
0 commit comments