예제 #1
0
 // Operation: Get Recent Chats
 // Http Get /restapi/v1.0/glip/recent/chats
 public async Task <RingCentral.GlipChatsListWithoutNavigation> Get(ListRecentChatsParameters queryParams = null)
 {
     return(await rc.Get <RingCentral.GlipChatsListWithoutNavigation>(this.Path(), queryParams));
 }
예제 #2
0
 /// <summary>
 ///     Returns recent chats where the user is a member. All records in response are sorted by the `lastModifiedTime` in
 ///     descending order (the latest changed chat is displayed first on page). **Note** 'Chat' is a general name for all
 ///     types of threads icluding *Personal* (user's own me-chat), *Direct* (one on one chat), *Group* (chat of 3-15
 ///     participants without specific name), *Team* (chat of 2 and more participants, with a specific name), *Everyone*
 ///     (company chat including all employees, with a specific name)."
 ///     HTTP Method: get
 ///     Endpoint: /restapi/{apiVersion}/glip/recent/chats
 ///     Rate Limit Group: Light
 ///     App Permission: TeamMessaging
 ///     User Permission: UnifiedAppDesktop
 /// </summary>
 public async Task <GlipChatsListWithoutNavigation> Get(ListRecentChatsParameters queryParams = null,
                                                        RestRequestConfig restRequestConfig   = null)
 {
     return(await rc.Get <GlipChatsListWithoutNavigation>(Path(), queryParams, restRequestConfig));
 }