We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a295318 commit 057f2d0Copy full SHA for 057f2d0
Project.toml
@@ -1,6 +1,6 @@
1
name = "CryptoExchangeAPIs"
2
uuid = "5e3d4798-c815-4641-85e1-deed530626d3"
3
-version = "0.34.1"
+version = "0.34.2"
4
5
[deps]
6
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
src/Bybit/Spot/API/Ticker.jl
@@ -43,6 +43,10 @@ struct TickerData <: BybitData
43
usdIndexPrice::Maybe{Float64}
44
end
45
46
+function Serde.isempty(::Type{<:TickerData}, x)::Bool
47
+ return x === ""
48
+end
49
+
50
"""
51
ticker(client::BybitClient, query::TickerQuery)
52
ticker(client::BybitClient = Bybit.Spot.public_client; kw...)
0 commit comments