Skip to content

Commit f58f39c

Browse files
author
Build System
committed
'Protobuf files change'
1 parent dbdb06e commit f58f39c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/systemathics/apis/services/tick_analytics/v1/tick_spread.proto

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ syntax = "proto3";
2323

2424
import "google/protobuf/timestamp.proto";
2525
import "google/protobuf/duration.proto";
26+
import "google/protobuf/wrappers.proto";
2627

2728
import "systemathics/apis/type/shared/v1/constraints.proto";
2829
import "systemathics/apis/type/shared/v1/identifier.proto";
@@ -47,11 +48,11 @@ message TickSpreadRequest
4748
// If empty, then all the available data is retrieved.
4849
systemathics.apis.type.shared.v1.Constraints constraints = 2;
4950

50-
// [Optional] The minimum accepted spread value, by default is set to min double value
51-
double min_accepted = 3;
51+
// [Optional] The minimum accepted spread value, by default is set to min double value : accept all
52+
google.protobuf.DoubleValue min_accepted = 3;
5253

53-
// [Optional] The maximum accepted spread value, by default is set to max double value
54-
double max_accepted = 4;
54+
// [Optional] The maximum accepted spread value, by default is set to max double value : accept all
55+
google.protobuf.DoubleValue max_accepted = 4;
5556

5657
// [Optional] Accept quote conditions, by default the accept is set to null : accept all
5758
repeated string accept = 5;

0 commit comments

Comments
 (0)