Skip to content

Commit f988440

Browse files
author
ADMSK\AVROGAL1
committed
docs: updates on documentation
Added informational and corporate documentation
1 parent 1563192 commit f988440

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)