libraries/bot-connector/src/main/java/com/microsoft/bot/connector/rest/RestConversations.java [879:890]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private ServiceResponse<PagedMembersResult> getConversationPagedMembersDelegate(
        Response<ResponseBody> response
    ) throws ErrorResponseException, IOException, IllegalArgumentException {

        return client.restClient()
            .responseBuilderFactory()
            .<PagedMembersResult, ErrorResponseException>newInstance(client.serializerAdapter())
            .register(HttpURLConnection.HTTP_OK, new TypeToken<PagedMembersResult>() {
            }.getType())
            .registerError(ErrorResponseException.class)
            .build(response);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



libraries/bot-connector/src/main/java/com/microsoft/bot/connector/rest/RestConversations.java [936:947]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private ServiceResponse<PagedMembersResult> getConversationPagedMembers2Delegate(
        Response<ResponseBody> response
    ) throws ErrorResponseException, IOException, IllegalArgumentException {

        return client.restClient()
            .responseBuilderFactory()
            .<PagedMembersResult, ErrorResponseException>newInstance(client.serializerAdapter())
            .register(HttpURLConnection.HTTP_OK, new TypeToken<PagedMembersResult>() {
            }.getType())
            .registerError(ErrorResponseException.class)
            .build(response);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



libraries/bot-connector/src/main/java/com/microsoft/bot/connector/rest/RestTeamsOperations.java [77:88]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private ServiceResponse<ConversationList> fetchChannelListDelegate(
        Response<ResponseBody> response
    ) throws ErrorResponseException, IOException, IllegalArgumentException {

        return client.restClient()
            .responseBuilderFactory()
            .<ConversationList, ErrorResponseException>newInstance(client.serializerAdapter())
            .register(HttpURLConnection.HTTP_OK, new TypeToken<ConversationList>() {
            }.getType())
            .registerError(ErrorResponseException.class)
            .build(response);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



