namespace CSharp_CODAPI { public class SHOP { public async Task purchasableItems(string gameId) { return await Http.sendRequest($"/inventory/v1/title/{gameId}/platform/psn/purchasable/public/en"); } public async Task bundleInformation(string title, string bundleId) { return await Http.sendRequest($"/inventory/v1/title/{title}/bundle/{bundleId}/en"); } public async Task battlePassLoot(long season, Platforms platform) { (_, var platformStr, _) = Helpers.mapGamertagToPlatform(string.Empty, platform, true); return await Http.sendRequest($"/loot/title/mw/platform/{platformStr}/list/loot_season_{season}/en"); } } }