# ---------------------------------------------------------------------------- # # Copyright (c) 2018-2020 Aspose Pty Ltd. All rights reserved. # # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. # # ---------------------------------------------------------------------------- module AsposeEmailCloud # Http request data. class HttpRequest # Initializes a new instance. # @param [String] resource_path Path to method endpoint. # @param [Hash] header_params Header parameters to be placed in the request header. # @param [Hash] query_params Query parameters in the url. # @param [Hash] form_params Request post form parameters, for `application/x-www-form-urlencoded`, `multipart/form-data`. # @param [Object] body Request body. # @param [Array] auth_names Auth Settings names for the request. def initialize(resource_path:, header_params: nil, query_params: nil, form_params: nil, body: nil, auth_names:) @resource_path = resource_path @query_params = query_params @header_params = header_params @form_params = form_params @body = body @auth_names = auth_names end attr_reader :resource_path, :header_params, :query_params, :form_params, :body, :auth_names end end