@@ -248,11 +248,11 @@ public class LootLockerMetadataSourceAndEntries
248
248
public class LootLockerMetadataOperationErrorKeyTypePair
249
249
{
250
250
/// <summary>
251
- /// TODO: Document
251
+ /// The metadata key that the operation error refers to
252
252
/// </summary>
253
253
public string key { get ; set ; }
254
254
/// <summary>
255
- /// TODO: Document
255
+ /// The type of value that the set operation was for
256
256
/// </summary>
257
257
public LootLockerMetadataTypes type { get ; set ; }
258
258
}
@@ -262,15 +262,15 @@ public class LootLockerMetadataOperationErrorKeyTypePair
262
262
public class LootLockerMetadataOperationError
263
263
{
264
264
/// <summary>
265
- /// TODO: Document
265
+ /// The type of action that this metadata operation was
266
266
/// </summary>
267
267
public LootLockerMetadataActions action { get ; set ; }
268
268
/// <summary>
269
- /// TODO: Document
269
+ /// The error message describing why this metadata set operation failed
270
270
/// </summary>
271
271
public string error { get ; set ; }
272
272
/// <summary>
273
- /// TODO: Document
273
+ /// The key and type of value that the operation was for
274
274
/// </summary>
275
275
public LootLockerMetadataOperationErrorKeyTypePair entry { get ; set ; }
276
276
}
@@ -280,7 +280,7 @@ public class LootLockerMetadataOperationError
280
280
public class LootLockerMetadataOperation : LootLockerMetadataEntry
281
281
{
282
282
/// <summary>
283
- /// TODO: Document
283
+ /// The type of action to perform for this metadata operation
284
284
/// </summary>
285
285
LootLockerMetadataActions action { get ; set ; }
286
286
}
@@ -302,19 +302,19 @@ public class LootLockerGetMultisourceMetadataRequest
302
302
public class LootLockerMetadataOperationRequest
303
303
{
304
304
/// <summary>
305
- /// TODO: Document
305
+ /// Whether or not this operation is for metadata on the current player
306
306
/// </summary>
307
307
public bool self { get ; set ; }
308
308
/// <summary>
309
- /// TODO: Document
309
+ /// The type of source that the source id refers to
310
310
/// </summary>
311
311
public string source { get ; set ; }
312
312
/// <summary>
313
- /// TODO: Document
313
+ /// The id of the specific source that the set operation was taken on, note that if source is set to self then this should also be set to "self"
314
314
/// </summary>
315
315
public string source_id { get ; set ; }
316
316
/// <summary>
317
- /// TODO: Document
317
+ /// List of operations to perform for the given source
318
318
/// </summary>
319
319
public LootLockerMetadataOperation [ ] entries { get ; set ; }
320
320
@@ -362,15 +362,15 @@ public class LootLockerGetMultisourceMetadataResponse : LootLockerResponse
362
362
public class LootLockerMetadataOperationsResponse : LootLockerResponse
363
363
{
364
364
/// <summary>
365
- /// TODO: Document
365
+ /// The type of source that the source id refers to
366
366
/// </summary>
367
367
public LootLockerMetadataSources source { get ; set ; }
368
368
/// <summary>
369
- /// TODO: Document
369
+ /// The id of the specific source that the set operation was taken on, note that if source is set to self then this will also be set to "self"
370
370
/// </summary>
371
371
public string source_id { get ; set ; }
372
372
/// <summary>
373
- /// TODO: Document
373
+ /// A list of errors (if any) that occurred when executing the provided metadata actions
374
374
/// </summary>
375
375
public LootLockerMetadataOperationError [ ] errors { get ; set ; }
376
376
}
@@ -483,3 +483,4 @@ public static void PerformMetadataOperations(LootLockerMetadataSources Source, s
483
483
}
484
484
}
485
485
}
486
+
0 commit comments