Skip to content

Commit

Permalink
fix(flatbuffers): making quote_id on Quote optional
Browse files Browse the repository at this point in the history
Can be missed on empty quote updates.
  • Loading branch information
markmcdowell committed Aug 1, 2024
1 parent 5c0f1e1 commit 02e823f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flatbuffers/Quote.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ table Quote {
/// Request identifier specified on the Quote Request.
req_id: string (required);
/// Unique identifier that will be supplied with every Quote.
quote_id: string (required);
quote_id: string;
/// Exchange or venue symbol.
venue: string (required);
/// Quote expiry time.
Expand Down

0 comments on commit 02e823f

Please sign in to comment.