You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/SteamWebAPI2/Interfaces/EconService.cs
+88-7Lines changed: 88 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
-
usingSteamWebAPI2.Models.SteamEconomy;
1
+
usingSteam.Models.SteamEconomy;
2
+
usingSteamWebAPI2.Models.SteamEconomy;
2
3
usingSteamWebAPI2.Utilities;
4
+
usingSystem;
3
5
usingSystem.Collections.Generic;
4
6
usingSystem.Threading.Tasks;
5
7
@@ -32,18 +34,30 @@ public EconService(ISteamWebRequest steamWebRequest, ISteamWebInterface steamWeb
32
34
/// <param name="includeFailed">If set, trades in status k_ETradeStatus_Failed, k_ETradeStatus_RollbackFailed, k_ETradeStatus_RollbackAbandoned, and k_ETradeStatus_EscrowRollback will be included</param>
@@ -65,20 +79,31 @@ public EconService(ISteamWebRequest steamWebRequest, ISteamWebInterface steamWeb
65
79
/// <param name="historicalOnly">Return trade offers that are not in an active state.</param>
66
80
/// <param name="timeHistoricalCutoff">A unix time value. when active_only is set, inactive offers will be returned if their state was updated since this time. Useful to get delta updates on what has changed. WARNING: If not passed, this will default to the time your account last viewed the trade offers page. To avoid this behavior use a very low or very high date.</param>
Copy file name to clipboardExpand all lines: src/SteamWebAPI2/Interfaces/IEconService.cs
+32-7Lines changed: 32 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
usingSteam.Models.SteamEconomy;
2
2
usingSteamWebAPI2.Utilities;
3
+
usingSystem;
3
4
usingSystem.Threading.Tasks;
4
5
5
6
namespaceSteamWebAPI2.Interfaces
@@ -18,7 +19,20 @@ public interface IEconService
18
19
/// <param name="includeFailed">If set, trades in status k_ETradeStatus_Failed, k_ETradeStatus_RollbackFailed, k_ETradeStatus_RollbackAbandoned, and k_ETradeStatus_EscrowRollback will be included</param>
/// This API gets a list of trade offers (up to a maximum of 500 sent or 1000 received regardless of time_historical_cutoff) for the account associated with the WebAPI key. You cannot call this API for accounts other than your own.
@@ -29,20 +43,31 @@ public interface IEconService
29
43
/// <param name="language">Needed if get_descriptions is set, the language to use for item descriptions.</param>
30
44
/// <param name="activeOnly">Return only trade offers in an active state (offers that haven't been accepted yet), or any offers that have had their state change since time_historical_cutoff.</param>
31
45
/// <param name="historicalOnly">Return trade offers that are not in an active state.</param>
32
-
/// <param name="timeHistoricalCutoff">A unix time value. when active_only is set, inactive offers will be returned if their state was updated since this time. Useful to get delta updates on what has changed. WARNING: If not passed, this will default to the time your account last viewed the trade offers page. To avoid this behavior use a very low or very high date.</param>
46
+
/// <param name="timeHistoricalCutoff">A unix time value. When active_only is set, inactive offers will be returned if their state was updated since this time. Useful to get delta updates on what has changed. WARNING: If not passed, this will default to the time your account last viewed the trade offers page. To avoid this behavior use a very low or very high date.</param>
/// This API gets details about a single trade offer. The trade offer must have been sent to or from the account associated with the WebAPI key. You cannot call this API for accounts other than your own.
0 commit comments