1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use crateRequest;
/// Represents a request to fetch fee stats from the Stellar Horizon API.
///
/// `FeeStatsRequest` is a struct used to construct queries for retrieving information about fee stats
/// from the Horizon server. This request does not include any parameters.
///
/// # Usage
/// Instances of `FeeStatsRequest` are created and optionally configured using the builder pattern.
/// Once the desired parameters are set, the request can be passed to the Horizon client to fetch
/// fee stats.
///
/// # Example
/// ```rust
/// use stellar_rs::fee_stats::fee_stats_request::FeeStatsRequest;
/// use stellar_rs::models::*;
///
/// let request = FeeStatsRequest::new();
///
/// // The request can now be used with a Horizon client to fetch fee stats.
/// ```
///