Skip to content

Commit b1ff9d2

Browse files
author
Build System
committed
'Protobuf files change'
1 parent c9e58fa commit b1ff9d2

3 files changed

Lines changed: 14 additions & 12 deletions

File tree

src/systemathics/apis/services/corporate_actions/v1/dividends.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ message Dividend
7474
enum 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

src/systemathics/apis/services/static_data/v1/static_sector.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ message StaticSectorResponse
6969
message 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;

src/systemathics/apis/type/shared/v1/sampling.proto

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,18 @@ package systemathics.apis.type.shared.v1;
2727
// Contains the intraday sampling intervals.
2828
enum 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
}

0 commit comments

Comments
 (0)