File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -74,13 +74,13 @@ message Dividend
7474enum DividendType
7575{
7676 // Unspecified
77- UNSPECIFIED = 0 ;
77+ DIVIDEND_TYPE_UNSPECIFIED = 0 ;
7878
7979 // Cash dividend
80- CASH = 1 ;
80+ DIVIDEND_TYPE_CASH = 1 ;
8181
8282 // Stock dividend
83- STOCK = 2 ;
83+ DIVIDEND_TYPE_STOCK = 2 ;
8484}
8585
8686
Original file line number Diff line number Diff line change @@ -69,13 +69,13 @@ message StaticSectorResponse
6969message Level
7070{
7171 // The sector classification level's name
72- string Name = 1 ;
72+ string name = 1 ;
7373
7474 // The sector classification level's index (order of the strcture)
75- int32 Index = 2 ;
75+ int32 index = 2 ;
7676
7777 // The sector classification level's code
78- string Code = 3 ;
78+ string code = 3 ;
7979
8080 // The sector classification level's definition
8181 string definition = 4 ;
Original file line number Diff line number Diff line change @@ -27,16 +27,18 @@ package systemathics.apis.type.shared.v1;
2727// Contains the intraday sampling intervals.
2828enum Sampling
2929{
30+ // The unspecifed interval
31+ SAMPLING_UNSPECIFIED = 0 ;
3032 // The one minute interval
31- SAMPLING_ONE_MINUTE = 0 ;
33+ SAMPLING_ONE_MINUTE = 1 ;
3234 // The five minutes interval
33- SAMPLING_FIVE_MINUTE = 1 ;
35+ SAMPLING_FIVE_MINUTE = 2 ;
3436 // The ten minutes interval
35- SAMPLING_TEN_MINUTE = 2 ;
37+ SAMPLING_TEN_MINUTE = 3 ;
3638 // The fifteen minutes interval
37- SAMPLING_FIFTEEN_MINUTE = 3 ;
39+ SAMPLING_FIFTEEN_MINUTE = 4 ;
3840 // The thirty minutes interval
39- SAMPLING_THIRTY_MINUTE = 4 ;
41+ SAMPLING_THIRTY_MINUTE = 5 ;
4042 // The one hour interval
41- SAMPLING_ONE_HOUR = 5 ;
43+ SAMPLING_ONE_HOUR = 6 ;
4244}
You can’t perform that action at this time.
0 commit comments