/// <summary> /// </summary> /// <param name="session">The session object</param> /// <param name="showLongDescriptions"></param> /// <returns></returns> public static Task <dynamic> Put(LeagueClientSession session, LolPerksUISettings showLongDescriptions) => session.SendRequestAsync <dynamic>("PUT", "/lol-perks/v1/settings", body: showLongDescriptions);
public static Task <object> PutLolPerksV1Settings([Parameter("showLongDescriptions", "body")] LolPerksUISettings showLongDescriptions) => Sender.Request <object>("put", $"/lol-perks/v1/settings", showLongDescriptions);