steam_rs/econ_service/mod.rs
1//! # Implements the `IEconService` interface
2//!
3//! Additional Steam Economy methods that provide access to Steam Trading.
4//!
5//! **Note:** This implementation is incomplete! The following endpoints are currently unimplemented
6//!
7//! - FlushAssetAppearanceCache (requires publisher key)
8//! - FlushContextCache (requires publisher key)
9//! - FlushInventoryCache (requires publisher key)
10//!
11//! Endpoints that require a publisher key are not likely to be
12//! implemented in the near future, as they cannot be tested by developers.
13
14pub mod get_trade_history;
15pub mod get_trade_offer;
16pub mod get_trade_offers;
17pub mod get_trade_offers_summary;