/*
* Options REST API
*
* Access market data, manage accounts, and trade Binance Options.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
#![allow(unused_imports)]
use async_trait::async_trait;
use derive_builder::Builder;
use reqwest;
use rust_decimal::prelude::*;
use serde::{Deserialize, Serialize};
use serde_json::{Value, json};
use std::collections::BTreeMap;
use crate::common::{
config::ConfigurationRestApi,
models::{ParamBuildError, RestApiResponse},
utils::send_request,
};
use crate::derivatives_trading_options::rest_api::models;
const HAS_TIME_UNIT: bool = false;
#[async_trait]
pub trait AccountApi: Send + Sync {
async fn account_funding_flow(
&self,
params: AccountFundingFlowParams,
) -> anyhow::Result<RestApiResponse<Vec<models::AccountFundingFlowResponseInner>>>;
async fn option_margin_account_information(
&self,
params: OptionMarginAccountInformationParams,
) -> anyhow::Result<RestApiResponse<models::OptionMarginAccountInformationResponse>>;
}
#[derive(Debug, Clone)]
pub struct AccountApiClient {
configuration: ConfigurationRestApi,
}
impl AccountApiClient {
pub fn new(configuration: ConfigurationRestApi) -> Self {
Self { configuration }
}
}
#[allow(non_camel_case_types)]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum AccountFundingFlowCurrencyEnum {
#[serde(rename = "USDT")]
Usdt,
}
impl AccountFundingFlowCurrencyEnum {
#[must_use]
pub fn as_str(&self) -> &'static str {
match self {
Self::Usdt => "USDT",
}
}
}
impl std::str::FromStr for AccountFundingFlowCurrencyEnum {
type Err = Box<dyn std::error::Error + Send + Sync>;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"USDT" => Ok(Self::Usdt),
other => Err(format!("invalid AccountFundingFlowCurrencyEnum: {}", other).into()),
}
}
}
/// Request parameters for the [`account_funding_flow`] operation.
///
/// This struct holds all of the inputs you can pass when calling
/// [`account_funding_flow`](#method.account_funding_flow).
#[derive(Clone, Debug, Builder, Deserialize)]
#[builder(pattern = "owned", build_fn(error = "ParamBuildError"))]
pub struct AccountFundingFlowParams {
/// Asset type, only support USDT as of now
///
/// This field is **required.
#[builder(setter(into))]
#[serde(rename = "currency")]
pub currency: AccountFundingFlowCurrencyEnum,
/// Return the recordId and subsequent data, the latest data is returned by default
///
/// This field is **optional.
#[builder(setter(into), default)]
#[serde(rename = "recordId", default)]
pub record_id: Option<i64>,
/// Start Time, e.g 1593511200000
///
/// This field is **optional.
#[builder(setter(into), default)]
#[serde(rename = "startTime", default)]
pub start_time: Option<i64>,
/// End Time, e.g 1593512200000
///
/// This field is **optional.
#[builder(setter(into), default)]
#[serde(rename = "endTime", default)]
pub end_time: Option<i64>,
/// Number of result sets returned
///
/// This field is **optional.
#[builder(setter(into), default)]
#[serde(rename = "limit", default)]
pub limit: Option<i64>,
/// Recv Window.
///
/// This field is **optional.
#[builder(setter(into), default)]
#[serde(rename = "recvWindow", default)]
pub recv_window: Option<i64>,
}
impl AccountFundingFlowParams {
/// Create a builder for [`account_funding_flow`].
///
/// Required parameters:
///
/// * `currency` — Asset type, only support USDT as of now
///
#[must_use]
pub fn builder(currency: AccountFundingFlowCurrencyEnum) -> AccountFundingFlowParamsBuilder {
AccountFundingFlowParamsBuilder::default().currency(currency)
}
}
/// Request parameters for the [`option_margin_account_information`] operation.
///
/// This struct holds all of the inputs you can pass when calling
/// [`option_margin_account_information`](#method.option_margin_account_information).
#[derive(Clone, Debug, Builder, Deserialize, Default)]
#[builder(pattern = "owned", build_fn(error = "ParamBuildError"))]
pub struct OptionMarginAccountInformationParams {
/// Recv Window.
///
/// This field is **optional.
#[builder(setter(into), default)]
#[serde(rename = "recvWindow", default)]
pub recv_window: Option<i64>,
}
impl OptionMarginAccountInformationParams {
/// Create a builder for [`option_margin_account_information`].
///
#[must_use]
pub fn builder() -> OptionMarginAccountInformationParamsBuilder {
OptionMarginAccountInformationParamsBuilder::default()
}
}
#[async_trait]
impl AccountApi for AccountApiClient {
async fn account_funding_flow(
&self,
params: AccountFundingFlowParams,
) -> anyhow::Result<RestApiResponse<Vec<models::AccountFundingFlowResponseInner>>> {
let AccountFundingFlowParams {
currency,
record_id,
start_time,
end_time,
limit,
recv_window,
} = params;
let mut query_params = BTreeMap::new();
let body_params = BTreeMap::new();
query_params.insert("currency".to_string(), json!(currency));
if let Some(rw) = record_id {
query_params.insert("recordId".to_string(), json!(rw));
}
if let Some(rw) = start_time {
query_params.insert("startTime".to_string(), json!(rw));
}
if let Some(rw) = end_time {
query_params.insert("endTime".to_string(), json!(rw));
}
if let Some(rw) = limit {
query_params.insert("limit".to_string(), json!(rw));
}
if let Some(rw) = recv_window {
query_params.insert("recvWindow".to_string(), json!(rw));
}
send_request::<Vec<models::AccountFundingFlowResponseInner>>(
&self.configuration,
"/eapi/v1/bill",
reqwest::Method::GET,
query_params,
body_params,
if HAS_TIME_UNIT {
self.configuration.time_unit
} else {
None
},
true,
)
.await
}
async fn option_margin_account_information(
&self,
params: OptionMarginAccountInformationParams,
) -> anyhow::Result<RestApiResponse<models::OptionMarginAccountInformationResponse>> {
let OptionMarginAccountInformationParams { recv_window } = params;
let mut query_params = BTreeMap::new();
let body_params = BTreeMap::new();
if let Some(rw) = recv_window {
query_params.insert("recvWindow".to_string(), json!(rw));
}
send_request::<models::OptionMarginAccountInformationResponse>(
&self.configuration,
"/eapi/v1/marginAccount",
reqwest::Method::GET,
query_params,
body_params,
if HAS_TIME_UNIT {
self.configuration.time_unit
} else {
None
},
true,
)
.await
}
}
#[cfg(all(test, feature = "derivatives_trading_options"))]
mod tests {
use super::*;
use crate::TOKIO_SHARED_RT;
use crate::{errors::ConnectorError, models::DataFuture, models::RestApiRateLimit};
use async_trait::async_trait;
use std::collections::HashMap;
struct DummyRestApiResponse<T> {
inner: Box<dyn FnOnce() -> DataFuture<Result<T, ConnectorError>> + Send + Sync>,
status: u16,
headers: HashMap<String, String>,
rate_limits: Option<Vec<RestApiRateLimit>>,
}
impl<T> From<DummyRestApiResponse<T>> for RestApiResponse<T> {
fn from(dummy: DummyRestApiResponse<T>) -> Self {
Self {
data_fn: dummy.inner,
status: dummy.status,
headers: dummy.headers,
rate_limits: dummy.rate_limits,
}
}
}
struct MockAccountApiClient {
force_error: bool,
}
#[async_trait]
impl AccountApi for MockAccountApiClient {
async fn account_funding_flow(
&self,
_params: AccountFundingFlowParams,
) -> anyhow::Result<RestApiResponse<Vec<models::AccountFundingFlowResponseInner>>> {
if self.force_error {
return Err(ConnectorError::ConnectorClientError {
msg: "ResponseError".to_string(),
code: None,
}
.into());
}
let resp_json: Value = serde_json::from_str(r#"[{"id":1125899906842624000,"asset":"USDT","amount":"-0.552","type":"FEE","createDate":1592449456000}]"#).unwrap_or_else(|_| serde_json::json!({}));
let dummy_response: Vec<models::AccountFundingFlowResponseInner> =
serde_json::from_value(resp_json.clone())
.expect("should parse into Vec<models::AccountFundingFlowResponseInner>");
let dummy = DummyRestApiResponse {
inner: Box::new(move || Box::pin(async move { Ok(dummy_response) })),
status: 200,
headers: HashMap::new(),
rate_limits: None,
};
Ok(dummy.into())
}
async fn option_margin_account_information(
&self,
_params: OptionMarginAccountInformationParams,
) -> anyhow::Result<RestApiResponse<models::OptionMarginAccountInformationResponse>>
{
if self.force_error {
return Err(ConnectorError::ConnectorClientError {
msg: "ResponseError".to_string(),
code: None,
}
.into());
}
let resp_json: Value = serde_json::from_str(r#"{"asset":[{"asset":"USDT","marginBalance":"10099.448","equity":"10094.44662","available":"8725.92524","initialMargin":"1084.52138","maintMargin":"151.00138","unrealizedPNL":"-5.00138","adjustedEquity":"34.13282285"}],"greek":[{"underlying":"BTCUSDT","delta":"-0.05","gamma":"-0.002","theta":"-0.05","vega":"-0.002"}],"time":1762843368098,"canTrade":true,"canDeposit":true,"canWithdraw":true,"reduceOnly":false,"tradeGroupId":-1}"#).unwrap_or_else(|_| serde_json::json!({}));
let dummy_response: models::OptionMarginAccountInformationResponse =
serde_json::from_value(resp_json.clone())
.expect("should parse into models::OptionMarginAccountInformationResponse");
let dummy = DummyRestApiResponse {
inner: Box::new(move || Box::pin(async move { Ok(dummy_response) })),
status: 200,
headers: HashMap::new(),
rate_limits: None,
};
Ok(dummy.into())
}
}
#[test]
fn account_funding_flow_required_params_success() {
TOKIO_SHARED_RT.block_on(async {
let client = MockAccountApiClient { force_error: false };
let params = AccountFundingFlowParams::builder(AccountFundingFlowCurrencyEnum::Usdt,).build().unwrap();
let resp_json: Value = serde_json::from_str(r#"[{"id":1125899906842624000,"asset":"USDT","amount":"-0.552","type":"FEE","createDate":1592449456000}]"#).unwrap_or_else(|_| serde_json::json!({}));
let expected_response : Vec<models::AccountFundingFlowResponseInner> = serde_json::from_value(resp_json.clone()).expect("should parse into Vec<models::AccountFundingFlowResponseInner>");
let resp = client.account_funding_flow(params).await.expect("Expected a response");
let data_future = resp.data();
let actual_response = data_future.await.unwrap();
assert_eq!(actual_response, expected_response);
});
}
#[test]
fn account_funding_flow_optional_params_success() {
TOKIO_SHARED_RT.block_on(async {
let client = MockAccountApiClient { force_error: false };
let params = AccountFundingFlowParams::builder(AccountFundingFlowCurrencyEnum::Usdt,).record_id(100000).start_time(1623319461670).end_time(1641782889000).limit(20).recv_window(5000).build().unwrap();
let resp_json: Value = serde_json::from_str(r#"[{"id":1125899906842624000,"asset":"USDT","amount":"-0.552","type":"FEE","createDate":1592449456000}]"#).unwrap_or_else(|_| serde_json::json!({}));
let expected_response : Vec<models::AccountFundingFlowResponseInner> = serde_json::from_value(resp_json.clone()).expect("should parse into Vec<models::AccountFundingFlowResponseInner>");
let resp = client.account_funding_flow(params).await.expect("Expected a response");
let data_future = resp.data();
let actual_response = data_future.await.unwrap();
assert_eq!(actual_response, expected_response);
});
}
#[test]
fn account_funding_flow_response_error() {
TOKIO_SHARED_RT.block_on(async {
let client = MockAccountApiClient { force_error: true };
let params = AccountFundingFlowParams::builder(AccountFundingFlowCurrencyEnum::Usdt)
.build()
.unwrap();
match client.account_funding_flow(params).await {
Ok(_) => panic!("Expected an error"),
Err(err) => {
assert_eq!(err.to_string(), "Connector client error: ResponseError");
}
}
});
}
#[test]
fn option_margin_account_information_required_params_success() {
TOKIO_SHARED_RT.block_on(async {
let client = MockAccountApiClient { force_error: false };
let params = OptionMarginAccountInformationParams::builder().build().unwrap();
let resp_json: Value = serde_json::from_str(r#"{"asset":[{"asset":"USDT","marginBalance":"10099.448","equity":"10094.44662","available":"8725.92524","initialMargin":"1084.52138","maintMargin":"151.00138","unrealizedPNL":"-5.00138","adjustedEquity":"34.13282285"}],"greek":[{"underlying":"BTCUSDT","delta":"-0.05","gamma":"-0.002","theta":"-0.05","vega":"-0.002"}],"time":1762843368098,"canTrade":true,"canDeposit":true,"canWithdraw":true,"reduceOnly":false,"tradeGroupId":-1}"#).unwrap_or_else(|_| serde_json::json!({}));
let expected_response : models::OptionMarginAccountInformationResponse = serde_json::from_value(resp_json.clone()).expect("should parse into models::OptionMarginAccountInformationResponse");
let resp = client.option_margin_account_information(params).await.expect("Expected a response");
let data_future = resp.data();
let actual_response = data_future.await.unwrap();
assert_eq!(actual_response, expected_response);
});
}
#[test]
fn option_margin_account_information_optional_params_success() {
TOKIO_SHARED_RT.block_on(async {
let client = MockAccountApiClient { force_error: false };
let params = OptionMarginAccountInformationParams::builder().recv_window(5000).build().unwrap();
let resp_json: Value = serde_json::from_str(r#"{"asset":[{"asset":"USDT","marginBalance":"10099.448","equity":"10094.44662","available":"8725.92524","initialMargin":"1084.52138","maintMargin":"151.00138","unrealizedPNL":"-5.00138","adjustedEquity":"34.13282285"}],"greek":[{"underlying":"BTCUSDT","delta":"-0.05","gamma":"-0.002","theta":"-0.05","vega":"-0.002"}],"time":1762843368098,"canTrade":true,"canDeposit":true,"canWithdraw":true,"reduceOnly":false,"tradeGroupId":-1}"#).unwrap_or_else(|_| serde_json::json!({}));
let expected_response : models::OptionMarginAccountInformationResponse = serde_json::from_value(resp_json.clone()).expect("should parse into models::OptionMarginAccountInformationResponse");
let resp = client.option_margin_account_information(params).await.expect("Expected a response");
let data_future = resp.data();
let actual_response = data_future.await.unwrap();
assert_eq!(actual_response, expected_response);
});
}
#[test]
fn option_margin_account_information_response_error() {
TOKIO_SHARED_RT.block_on(async {
let client = MockAccountApiClient { force_error: true };
let params = OptionMarginAccountInformationParams::builder()
.build()
.unwrap();
match client.option_margin_account_information(params).await {
Ok(_) => panic!("Expected an error"),
Err(err) => {
assert_eq!(err.to_string(), "Connector client error: ResponseError");
}
}
});
}
}