Skip to main content

rust_okx/api/finance/
responses.rs

1use crate::model::RestRow;
2
3/// Savings balance row.
4pub type SavingBalance = RestRow;
5
6/// Savings purchase/redemption result.
7pub type SavingsPurchaseRedemptionResult = RestRow;
8
9/// Set-lending-rate result.
10pub type SetLendingRateResult = RestRow;
11
12/// Lending history row.
13pub type LendingHistory = RestRow;
14
15/// Public borrow-history row.
16pub type PublicBorrowHistory = RestRow;
17
18/// Public borrow-info row.
19pub type PublicBorrowInfo = RestRow;
20
21/// Staking/DeFi offer row.
22pub type StakingDefiOffer = RestRow;
23
24/// Staking/DeFi order row.
25pub type StakingDefiOrder = RestRow;
26
27/// Staking product-info row.
28pub type StakingProductInfo = RestRow;
29
30/// Staking order row.
31pub type StakingOrder = RestRow;
32
33/// Staking balance row.
34pub type StakingBalance = RestRow;
35
36/// Staking history row.
37pub type StakingHistory = RestRow;
38
39/// Staking APY-history row.
40pub type StakingApyHistory = RestRow;
41
42/// Flexible-loan currency row.
43pub type FlexibleLoanCurrency = RestRow;
44
45/// Flexible-loan collateral asset row.
46pub type FlexibleLoanCollateralAsset = RestRow;
47
48/// Flexible-loan max-loan row.
49pub type FlexibleLoanMaxLoan = RestRow;
50
51/// Flexible-loan max-redeem row.
52pub type FlexibleLoanMaxRedeem = RestRow;
53
54/// Flexible-loan order row.
55pub type FlexibleLoanOrder = RestRow;
56
57/// Flexible-loan info row.
58pub type FlexibleLoanInfo = RestRow;
59
60/// Flexible-loan history row.
61pub type FlexibleLoanHistory = RestRow;
62
63/// Flexible-loan interest row.
64pub type FlexibleLoanInterest = RestRow;