22
33namespace LootLocker . LootLockerEnums
44{
5- /*
6- * Possible account linking process statuses. Undefined means that the object couldn't be constructed correctly
7- */
5+ /// <summary> Possible account linking process statuses. Undefined means that the object couldn't be constructed correctly
6+ /// </summary>
87 public enum LootLockerWalletHolderTypes
98 {
109 Character = 0 ,
@@ -18,113 +17,103 @@ namespace LootLocker.Requests
1817 // Data Definitions
1918 //==================================================
2019
21- /*
22- *
23- */
20+ /// <summary>
21+ /// </summary>
2422 public class LootLockerBalance
2523 {
26- /*
27- * Current amount of the given currency in this wallet
28- */
24+ /// <summary>
25+ /// Current amount of the given currency in this wallet
26+ /// </summary>
2927 public string amount { get ; set ; }
30- /*
31- * Information about the currency that this balance is in
32- */
28+ /// <summary>
29+ /// Information about the currency that this balance is in
30+ /// </summary>
3331 public LootLockerCurrency currency { get ; set ; }
34- /*
35- * The id of the wallet holding this balance
36- */
32+ /// <summary>
33+ /// The id of the wallet holding this balance
34+ /// </summary>
3735 public string wallet_id { get ; set ; }
38- /*
39- * The time that this balance was created
40- */
36+ /// <summary>
37+ /// The time that this balance was created
38+ /// </summary>
4139 public string created_at { get ; set ; }
4240 } ;
4341
4442 //==================================================
4543 // Request Definitions
4644 //==================================================
4745
48- /*
49- *
50- */
46+ /// <summary>
47+ /// </summary>
5148 public class LootLockerCreditRequest
5249 {
53- /*
54- * Amount of the given currency to debit/credit to/from the given wallet
55- */
50+ /// <summary> Amount of the given currency to debit/credit to/from the given wallet
51+ /// </summary>
5652 public string amount { get ; set ; }
57- /*
58- * The id of the currency that the amount is given in
59- */
53+ /// <summary>
54+ /// The id of the currency that the amount is given in
55+ /// </summary>
6056 public string currency_id { get ; set ; }
61- /*
62- * The id of the wallet to credit/debit to/from
63- */
57+ /// <summary> The id of the wallet to credit/debit to/from
58+ /// </summary>
6459 public string wallet_id { get ; set ; }
6560 } ;
6661
67- /*
68- *
69- */
62+ /// <summary>
63+ /// </summary>
7064 public class LootLockerDebitRequest
7165 {
72- /*
73- * Amount of the given currency to debit/credit to/from the given wallet
74- */
66+ /// <summary> Amount of the given currency to debit/credit to/from the given wallet
67+ /// </summary>
7568 public string amount { get ; set ; }
76- /*
77- * The id of the currency that the amount is given in
78- */
69+ /// <summary>
70+ /// The id of the currency that the amount is given in
71+ /// </summary>
7972 public string currency_id { get ; set ; }
80- /*
81- * The id of the wallet to credit/debit to/from
82- */
73+ /// <summary> The id of the wallet to credit/debit to/from
74+ /// </summary>
8375 public string wallet_id { get ; set ; }
8476 } ;
8577
8678 //==================================================
8779 // Response Definitions
8880 //==================================================
8981
90- /*
91- *
92- */
82+ /// <summary>
83+ /// </summary>
9384 public class LootLockerListBalancesForWalletResponse : LootLockerResponse
9485 {
95- /*
96- * List of balances in different currencies in the requested wallet
97- */
86+ /// <summary>
87+ /// List of balances in different currencies in the requested wallet
88+ /// </summary>
9889 public LootLockerBalance [ ] balances { get ; set ; }
9990 } ;
10091
101- /*
102- *
103- */
92+ /// <summary>
93+ /// </summary>
10494 public class LootLockerBalanceForWalletResponse : LootLockerResponse
10595 {
106- /*
107- * The balance of the wallet
108- */
96+ /// <summary>
97+ /// The balance of the wallet
98+ /// </summary>
10999 public LootLockerBalance balance { get ; set ; }
110100 } ;
111101
112- /*
113- *
114- */
102+ /// <summary>
103+ /// </summary>
115104 public class LootLockerGetWalletResponse : LootLockerResponse
116105 {
117- /*
118- * The unique id of the holder of this wallet
119- */
106+ /// <summary>
107+ /// The unique id of the holder of this wallet
108+ /// </summary>
120109 public string holder_id { get ; set ; }
121- /*
122- * The unique id of this wallet
123- */
110+ /// <summary>
111+ /// The unique id of this wallet
112+ /// </summary>
124113 public string id { get ; set ; }
125- /*
126- * The type of entity that holds this wallet
127- */
114+ /// <summary>
115+ /// The type of entity that holds this wallet
116+ /// </summary>
128117 public LootLockerWalletHolderTypes type { get ; set ; }
129118 } ;
130119
0 commit comments