Last updated 9 days ago
LootLockerSDKManager.ListCurrencies((response) => { if (!response.success) { Debug.Log("error: " + response.errorData.message); Debug.Log("request ID: " + response.errorData.request_id); return; } });
To see what data gets returned, please refer to our Reference Documentation.
string currencyID = ""; LootLockerSDKManager.GetCurrencyDenominationsByCode(currencyID, (response) => { if(!response.success) { Debug.Log("error: " + response.errorData.message); Debug.Log("request ID: " + response.errorData.request_id); return; } });