Skip to content

Commit

Permalink
Fix go vet errors (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
leki75 authored Aug 9, 2024
1 parent 8642da9 commit 31f709b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
4 changes: 2 additions & 2 deletions marketdata/entities.go
Original file line number Diff line number Diff line change
Expand Up @@ -421,8 +421,8 @@ type OptionGreeks struct {
type OptionSnapshot struct {
LatestTrade *OptionTrade `json:"latestTrade"`
LatestQuote *OptionQuote `json:"latestQuote"`
ImpliedVolatility float64 `json:"impliedVolatility,omitempty`
Greeks *OptionGreeks `json:"greeks,omitempty`
ImpliedVolatility float64 `json:"impliedVolatility,omitempty"`
Greeks *OptionGreeks `json:"greeks,omitempty"`
}
type multiTradeResponse struct {
NextPageToken *string `json:"next_page_token"`
Expand Down
10 changes: 3 additions & 7 deletions marketdata/entities_easyjson.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 31f709b

Please sign in to comment.