@@ -219,3 +219,43 @@ pub struct Position {
219
219
#[ serde( with = "time::serde::rfc3339::option" ) ]
220
220
pub timestamp : Option < OffsetDateTime > ,
221
221
}
222
+
223
+ #[ derive( Clone , Debug , Serialize ) ]
224
+ pub struct GetInstrumentRequest {
225
+ pub symbol : Option < ContractSymbol > ,
226
+ /// Number of results to fetch.
227
+ pub count : Option < u64 > ,
228
+ /// If true, will sort results newest first.
229
+ pub reverse : Option < bool > ,
230
+ /// Starting date filter for results.
231
+ #[ serde( with = "time::serde::rfc3339::option" , rename = "startTime" ) ]
232
+ pub start_time : Option < OffsetDateTime > ,
233
+ /// Ending date filter for results.
234
+ #[ serde( with = "time::serde::rfc3339::option" , rename = "endTime" ) ]
235
+ pub end_time : Option < OffsetDateTime > ,
236
+ }
237
+
238
+ impl Request for GetInstrumentRequest {
239
+ const METHOD : Method = Method :: GET ;
240
+ const SIGNED : bool = false ;
241
+ const ENDPOINT : & ' static str = "/instrument" ;
242
+ const HAS_PAYLOAD : bool = true ;
243
+ type Response = Vec < Instrument > ;
244
+ }
245
+
246
+ /// Note: only relevant fields have been added
247
+ #[ derive( Clone , Debug , Deserialize , Serialize ) ]
248
+ pub struct Instrument {
249
+ pub symbol : ContractSymbol ,
250
+ #[ serde( rename = "fundingTimestamp" , with = "time::serde::rfc3339" ) ]
251
+ pub funding_timestamp : OffsetDateTime ,
252
+ #[ serde( rename = "fundingInterval" , with = "time::serde::rfc3339" ) ]
253
+ pub funding_interval : OffsetDateTime ,
254
+ #[ serde( rename = "fundingRate" ) ]
255
+ pub funding_rate : f64 ,
256
+ /// Predicted funding rate for the the next interval after funding_timestamp
257
+ #[ serde( rename = "indicativeFundingRate" ) ]
258
+ pub indicative_funding_rate : f64 ,
259
+ #[ serde( with = "time::serde::rfc3339" ) ]
260
+ pub timestamp : OffsetDateTime ,
261
+ }
0 commit comments