Skip to content

Commit

Permalink
added spreadTypeFilter to SubscriptionRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
dlucek committed Sep 19, 2023
1 parent f5f2f6c commit c83e9b1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions openfeed_api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ enum SymbolType {

/// Bulk subscription filter.
message BulkSubscriptionFilter {
/// Type of the symbol: Barchart of Exchange. Barchart is the default.
/// Type of the symbol: Barchart or Exchange. Barchart is the default.
SymbolType symbolType = 1;
/// regular expression pattern for the symbol
string symbolPattern = 2;
Expand All @@ -208,7 +208,7 @@ message SubscriptionRequest {
/// Client-assigned id for this request. Response will include same id
sint64 correlationId = 1;
string token = 2;
/// Preferred service (realtime or delayed).
/// Preferred service (realtime or delayed). REAL_TIME is the default.
Service service = 3;
bool unsubscribe = 4;
repeated Request requests = 5;
Expand All @@ -226,6 +226,8 @@ message SubscriptionRequest {
repeated InstrumentDefinition.InstrumentType instrumentType = 12;
/// Filter for the exchange and channel subscriptions.
repeated BulkSubscriptionFilter bulkSubscriptionFilter = 13;
/// Filter for Spread Types
repeated string spreadTypeFilter = 14;
}
}
message SubscriptionResponse {
Expand Down

0 comments on commit c83e9b1

Please sign in to comment.