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: Runtime/Game/LootLockerSDKManager.cs
+88Lines changed: 88 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5769,6 +5769,94 @@ public static void GetEntitlement(string entitlementId, Action<LootLockerSingleE
5769
5769
5770
5770
#endregion
5771
5771
5772
+
#region Metadata
5773
+
5774
+
/// <summary>
5775
+
/// List Metadata for the specified source with default pagination
5776
+
/// </summary>
5777
+
/// <param name="Source> The source type for which to request metadata</param>
5778
+
/// <param name="SourceID> The specific source id for which to request metadata</param>
5779
+
/// <param name="OnComplete> delegate for handling the server response</param>
5780
+
/// <param name="IgnoreFiles> Base64 values will be set to content_type "application/x-redacted" and the content will be an empty String. Use this to avoid accidentally fetching large data files.</param>
/// List the requested page of Metadata for the specified source with the specified pagination
5788
+
/// </summary>
5789
+
/// <param name="Source> The source type for which to request metadata</param>
5790
+
/// <param name="SourceID> The specific source id for which to request metadata</param>
5791
+
/// <param name="Page> Used together with PerPage to apply pagination to this request. Page designates which "page" of items to fetch</param>
5792
+
/// <param name="PerPage> Used together with Page to apply pagination to this request.PerPage designates how many items are considered a "page"</param>
5793
+
/// <param name="OnComplete> delegate for handling the server response</param>
5794
+
/// <param name="IgnoreFiles> Base64 values will be set to content_type "application/x-redacted" and the content will be an empty String. Use this to avoid accidentally fetching large data files.</param>
/// List Metadata for the specified source that has all of the provided tags, use default pagination
5802
+
/// </summary>
5803
+
/// <param name="Source> The source type for which to request metadata</param>
5804
+
/// <param name="SourceID> The specific source id for which to request metadata</param>
5805
+
/// <param name="Tags"> The tags that the requested metadata should have, only metadata matching *all of* the given tags will be returned </param>
5806
+
/// <param name="OnComplete> delegate for handling the server response</param>
5807
+
/// <param name="IgnoreFiles> Base64 values will be set to content_type "application/x-redacted" and the content will be an empty String. Use this to avoid accidentally fetching large data files.</param>
/// List the requested page of Metadata for the specified source that has all of the provided tags and paginate according to the supplied pagination settings
5815
+
/// </summary>
5816
+
/// <param name="Source> The source type for which to request metadata</param>
5817
+
/// <param name="SourceID> The specific source id for which to request metadata</param>
5818
+
/// <param name="Tags"> The tags that the requested metadata should have, only metadata matching *all of* the given tags will be returned </param>
5819
+
/// <param name="Page> Used together with PerPage to apply pagination to this request.Page designates which "page" of items to fetch</param>
5820
+
/// <param name="PerPage> Used together with Page to apply pagination to this request.PerPage designates how many items are considered a "page"</param>
5821
+
/// <param name="OnComplete> delegate for handling the server response</param>
5822
+
/// <param name="IgnoreFiles> Base64 values will be set to content_type "application/x-redacted" and the content will be an empty String. Use this to avoid accidentally fetching large data files.</param>
/// Get Metadata for the specified source with the given key
5836
+
/// </summary>
5837
+
/// <param name="Source> The source type for which to request metadata</param>
5838
+
/// <param name="SourceID> The specific source id for which to request metadata</param>
5839
+
/// <param name="Key> The key of the metadata to fetch, use this to fetch a specific key for the specified source.This takes precedence over pagination and tags</param>
5840
+
/// <param name="OnComplete> delegate for handling the server response</param>
5841
+
/// <param name="IgnoreFiles> Optional: Base64 values will be set to content_type "application/x-redacted" and the content will be an empty String. Use this to avoid accidentally fetching large data files.</param>
0 commit comments