require 'microsoft_kiota_abstractions' require_relative '../../../microsoft_graph' require_relative '../../../models/chat_message' require_relative '../../../models/chat_message_collection_response' require_relative '../../../models/o_data_errors_o_data_error' require_relative '../../chats' require_relative '../item' require_relative './count/count_request_builder' require_relative './delta/delta_request_builder' require_relative './item/chat_message_item_request_builder' require_relative './messages' module MicrosoftGraph module Chats module Item module Messages ## # Provides operations to manage the messages property of the microsoft.graph.chat entity. class MessagesRequestBuilder < MicrosoftKiotaAbstractions::BaseRequestBuilder ## # Provides operations to count the resources in the collection. def count() return MicrosoftGraph::Chats::Item::Messages::Count::CountRequestBuilder.new(@path_parameters, @request_adapter) end ## # Provides operations to call the delta method. def delta() return MicrosoftGraph::Chats::Item::Messages::Delta::DeltaRequestBuilder.new(@path_parameters, @request_adapter) end ## ## Provides operations to manage the messages property of the microsoft.graph.chat entity. ## @param chat_message_id The unique identifier of chatMessage ## @return a chat_message_item_request_builder ## def by_chat_message_id(chat_message_id) raise StandardError, 'chat_message_id cannot be null' if chat_message_id.nil? url_tpl_params = @path_parameters.clone url_tpl_params["chatMessage%2Did"] = chat_message_id return MicrosoftGraph::Chats::Item::Messages::Item::ChatMessageItemRequestBuilder.new(url_tpl_params, @request_adapter) end ## ## Instantiates a new MessagesRequestBuilder and sets the default values. ## @param path_parameters Path parameters for the request ## @param request_adapter The request adapter to use to execute the requests. ## @return a void ## def initialize(path_parameters, request_adapter) super(path_parameters, request_adapter, "{+baseurl}/chats/{chat%2Did}/messages{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}") end ## ## Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). ## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options. ## @return a Fiber of chat_message_collection_response ## def get(request_configuration=nil) request_info = self.to_get_request_information( request_configuration ) error_mapping = Hash.new error_mapping["4XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrorsODataError.create_from_discriminator_value(pn) } error_mapping["5XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrorsODataError.create_from_discriminator_value(pn) } return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::ChatMessageCollectionResponse.create_from_discriminator_value(pn) }, error_mapping) end ## ## Send a new chatMessage in the specified channel or a chat. ## @param body The request body ## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options. ## @return a Fiber of chat_message ## def post(body, request_configuration=nil) raise StandardError, 'body cannot be null' if body.nil? request_info = self.to_post_request_information( body, request_configuration ) error_mapping = Hash.new error_mapping["4XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrorsODataError.create_from_discriminator_value(pn) } error_mapping["5XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrorsODataError.create_from_discriminator_value(pn) } return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::ChatMessage.create_from_discriminator_value(pn) }, error_mapping) end ## ## Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). ## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options. ## @return a request_information ## def to_get_request_information(request_configuration=nil) request_info = MicrosoftKiotaAbstractions::RequestInformation.new() request_info.url_template = @url_template request_info.path_parameters = @path_parameters request_info.http_method = :GET request_info.headers.add('Accept', 'application/json') unless request_configuration.nil? request_info.add_headers_from_raw_object(request_configuration.headers) request_info.set_query_string_parameters_from_raw_object(request_configuration.query_parameters) request_info.add_request_options(request_configuration.options) end return request_info end ## ## Send a new chatMessage in the specified channel or a chat. ## @param body The request body ## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options. ## @return a request_information ## def to_post_request_information(body, request_configuration=nil) raise StandardError, 'body cannot be null' if body.nil? request_info = MicrosoftKiotaAbstractions::RequestInformation.new() request_info.url_template = @url_template request_info.path_parameters = @path_parameters request_info.http_method = :POST request_info.headers.add('Accept', 'application/json') unless request_configuration.nil? request_info.add_headers_from_raw_object(request_configuration.headers) request_info.add_request_options(request_configuration.options) end request_info.set_content_from_parsable(@request_adapter, "application/json", body) return request_info end ## # Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). class MessagesRequestBuilderGetQueryParameters ## # Include count of items attr_accessor :count ## # Expand related entities attr_accessor :expand ## # Filter items by property values attr_accessor :filter ## # Order items by property values attr_accessor :orderby ## # Search items by search phrases attr_accessor :search ## # Select properties to be returned attr_accessor :select ## # Skip the first n items attr_accessor :skip ## # Show only the first n items attr_accessor :top ## ## Maps the query parameters names to their encoded names for the URI template parsing. ## @param original_name The original query parameter name in the class. ## @return a string ## def get_query_parameter(original_name) raise StandardError, 'original_name cannot be null' if original_name.nil? case original_name when "count" return "%24count" when "expand" return "%24expand" when "filter" return "%24filter" when "orderby" return "%24orderby" when "search" return "%24search" when "select" return "%24select" when "skip" return "%24skip" when "top" return "%24top" else return original_name end end end end end end end end