File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
src/systemathics/apis/services/tick_analytics/v1 Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ syntax = "proto3";
23
23
24
24
import "google/protobuf/timestamp.proto" ;
25
25
import "google/protobuf/duration.proto" ;
26
+ import "google/protobuf/wrappers.proto" ;
26
27
27
28
import "systemathics/apis/type/shared/v1/constraints.proto" ;
28
29
import "systemathics/apis/type/shared/v1/identifier.proto" ;
@@ -47,11 +48,11 @@ message TickSpreadRequest
47
48
// If empty, then all the available data is retrieved.
48
49
systemathics.apis.type.shared.v1.Constraints constraints = 2 ;
49
50
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 ;
52
53
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 ;
55
56
56
57
// [Optional] Accept quote conditions, by default the accept is set to null : accept all
57
58
repeated string accept = 5 ;
You can’t perform that action at this time.
0 commit comments