File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -202,9 +202,9 @@ public class LootLockerGrantAssetResponse : LootLockerResponse
202
202
{
203
203
public int id { get ; set ; }
204
204
public int asset_id { get ; set ; }
205
+ public string asset_ulid { get ; set ; }
205
206
public int ? asset_variation_id { get ; set ; }
206
207
public int ? asset_rental_option_id { get ; set ; }
207
- public string asset_ulid { get ; set ; }
208
208
public string acquisition_source { get ; set ; }
209
209
public string acquisition_date { get ; set ; }
210
210
}
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ public class LootLockerAssetDetails
238
238
/// </summary>
239
239
public int legacy_id { get ; set ; }
240
240
/// <summary>
241
- /// The unique identifying id of this asset
241
+ /// The unique identifying ulid of this asset
242
242
/// </summary>
243
243
public string id { get ; set ; }
244
244
/// <summary>
Original file line number Diff line number Diff line change 3
3
4
4
namespace LootLocker . Requests
5
5
{
6
-
7
-
8
6
public class LootLockerPlayerHeroResponse : LootLockerResponse
9
7
{
10
8
public LootLockerPlayerHero hero ;
@@ -86,6 +84,7 @@ public class LootLockerAddAssetVariationToHeroLoadoutRequest
86
84
public int asset_variation_id { get ; set ; }
87
85
}
88
86
87
+ [ Obsolete ( "LootLockerHeroLoadout is deprecated as it's not used in the SDK" ) ]
89
88
public class LootLockerHeroLoadout
90
89
{
91
90
public int variation_id { get ; set ; }
@@ -95,11 +94,13 @@ public class LootLockerHeroLoadout
95
94
public LootLockerRental rental { get ; set ; }
96
95
}
97
96
97
+ [ Obsolete ( "LootLockerHeroAssetInstance is deprecated as it's not used in the SDK" ) ]
98
98
public class LootLockerHeroAssetInstance
99
99
{
100
100
public int instance_id { get ; set ; }
101
101
}
102
102
103
+ [ Obsolete ( "LootLockerHeroAsset is deprecated as it's not used in the SDK" ) ]
103
104
public class LootLockerHeroAsset
104
105
{
105
106
public int asset_id { get ; set ; }
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ public bool TryGetValueAsDouble(out double output)
95
95
try
96
96
{
97
97
string doubleAsString = value . ToString ( ) ;
98
- return double . TryParse ( doubleAsString , out output ) ; ;
98
+ return double . TryParse ( doubleAsString , out output ) ;
99
99
}
100
100
catch ( InvalidCastException )
101
101
{
@@ -111,7 +111,7 @@ public bool TryGetValueAsInteger(out int output)
111
111
try
112
112
{
113
113
string intAsString = value . ToString ( ) ;
114
- return int . TryParse ( intAsString , out output ) ; ;
114
+ return int . TryParse ( intAsString , out output ) ;
115
115
}
116
116
catch ( InvalidCastException )
117
117
{
@@ -127,7 +127,7 @@ public bool TryGetValueAsBool(out bool output)
127
127
try
128
128
{
129
129
string boolAsString = value . ToString ( ) ;
130
- return bool . TryParse ( boolAsString , out output ) ; ;
130
+ return bool . TryParse ( boolAsString , out output ) ;
131
131
}
132
132
catch ( InvalidCastException )
133
133
{
You can’t perform that action at this time.
0 commit comments