2
2
3
3
namespace LootLocker . LootLockerEnums
4
4
{
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>
8
7
public enum LootLockerWalletHolderTypes
9
8
{
10
9
Character = 0 ,
@@ -18,113 +17,103 @@ namespace LootLocker.Requests
18
17
// Data Definitions
19
18
//==================================================
20
19
21
- /*
22
- *
23
- */
20
+ /// <summary>
21
+ /// </summary>
24
22
public class LootLockerBalance
25
23
{
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>
29
27
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>
33
31
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>
37
35
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>
41
39
public string created_at { get ; set ; }
42
40
} ;
43
41
44
42
//==================================================
45
43
// Request Definitions
46
44
//==================================================
47
45
48
- /*
49
- *
50
- */
46
+ /// <summary>
47
+ /// </summary>
51
48
public class LootLockerCreditRequest
52
49
{
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>
56
52
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>
60
56
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>
64
59
public string wallet_id { get ; set ; }
65
60
} ;
66
61
67
- /*
68
- *
69
- */
62
+ /// <summary>
63
+ /// </summary>
70
64
public class LootLockerDebitRequest
71
65
{
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>
75
68
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>
79
72
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>
83
75
public string wallet_id { get ; set ; }
84
76
} ;
85
77
86
78
//==================================================
87
79
// Response Definitions
88
80
//==================================================
89
81
90
- /*
91
- *
92
- */
82
+ /// <summary>
83
+ /// </summary>
93
84
public class LootLockerListBalancesForWalletResponse : LootLockerResponse
94
85
{
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>
98
89
public LootLockerBalance [ ] balances { get ; set ; }
99
90
} ;
100
91
101
- /*
102
- *
103
- */
92
+ /// <summary>
93
+ /// </summary>
104
94
public class LootLockerBalanceForWalletResponse : LootLockerResponse
105
95
{
106
- /*
107
- * The balance of the wallet
108
- */
96
+ /// <summary>
97
+ /// The balance of the wallet
98
+ /// </summary>
109
99
public LootLockerBalance balance { get ; set ; }
110
100
} ;
111
101
112
- /*
113
- *
114
- */
102
+ /// <summary>
103
+ /// </summary>
115
104
public class LootLockerGetWalletResponse : LootLockerResponse
116
105
{
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>
120
109
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>
124
113
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>
128
117
public LootLockerWalletHolderTypes type { get ; set ; }
129
118
} ;
130
119
0 commit comments