/// <summary> /// </summary> /// <param name="session">The session object</param> /// <param name="auth"></param> /// <returns></returns> public static Task <LolChatSessionResource> Post(LeagueClientSession session, LolChatAuthResourcePlain auth) => session.SendRequestAsync <LolChatSessionResource>("POST", "/lol-chat/v1/session/plain", body: auth);
public static Task <LolChatSessionResource> PostLolChatV1SessionPlain([Parameter("auth", "body")] LolChatAuthResourcePlain auth) => Sender.Request <LolChatSessionResource>("post", $"/lol-chat/v1/session/plain", auth);