/// <summary>
        ///  Log provided data
        /// </summary>
        /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="loggingAPIViewRequest"> (optional)</param>
        /// <param name="cancellationToken">Cancellation Token to cancel request (optional) </param>
        /// <returns>Task of Dictionary&lt;string, Object&gt;</returns>
        public async System.Threading.Tasks.Task <Dictionary <string, Object> > LoggingLogMessagePOSTAsync(LoggingAPIViewRequest loggingAPIViewRequest = default(LoggingAPIViewRequest), CancellationToken cancellationToken = default(CancellationToken))
        {
            ApiResponse <Dictionary <string, Object> > localVarResponse = await LoggingLogMessagePOSTWithHttpInfoAsync(loggingAPIViewRequest, cancellationToken);

            return(localVarResponse.Data);
        }
        /// <summary>
        ///  Log provided data
        /// </summary>
        /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="loggingAPIViewRequest"> (optional)</param>
        /// <param name="cancellationToken">Cancellation Token to cancel request (optional) </param>
        /// <returns>Task of ApiResponse (Dictionary&lt;string, Object&gt;)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <Dictionary <string, Object> > > LoggingLogMessagePOSTWithHttpInfoAsync(LoggingAPIViewRequest loggingAPIViewRequest = default(LoggingAPIViewRequest), CancellationToken cancellationToken = default(CancellationToken))
        {
            var    localVarPath         = "/api/v1/logging/log_message/";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new List <KeyValuePair <String, String> >();
            var    localVarHeaderParams = new Dictionary <String, String>(this.Configuration.DefaultHeader);
            var    localVarFormParams   = new Dictionary <String, String>();
            var    localVarFileParams   = new Dictionary <String, FileParameter>();
            Object localVarPostBody     = null;

            // to determine the Content-Type header
            String[] localVarHttpContentTypes = new String[] {
                "application/json",
                "application/x-www-form-urlencoded",
                "multipart/form-data"
            };
            String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

            // to determine the Accept header
            String[] localVarHttpHeaderAccepts = new String[] {
                "application/json"
            };
            String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts);

            if (localVarHttpHeaderAccept != null)
            {
                localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept);
            }

            if (loggingAPIViewRequest != null && loggingAPIViewRequest.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(loggingAPIViewRequest); // http body (model) parameter
            }
            else
            {
                localVarPostBody = loggingAPIViewRequest; // byte array
            }

            // authentication (AuthToken) required
            if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("Authorization")))
            {
                localVarHeaderParams["Authorization"] = this.Configuration.GetApiKeyWithPrefix("Authorization");
            }

            // make the HTTP request
            IRestResponse localVarResponse = (IRestResponse)await this.Configuration.ApiClient.CallApiAsync(localVarPath,
                                                                                                            Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
                                                                                                            localVarPathParams, localVarHttpContentType, cancellationToken);

            int localVarStatusCode = (int)localVarResponse.StatusCode;

            if (ExceptionFactory != null)
            {
                Exception exception = ExceptionFactory("LoggingLogMessagePOST", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <Dictionary <string, Object> >(localVarStatusCode,
                                                                  localVarResponse.Headers.ToDictionary(x => x.Name, x => string.Join(",", x.Value)),
                                                                  (Dictionary <string, Object>) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(Dictionary <string, Object>))));
        }
        /// <summary>
        ///  Log provided data
        /// </summary>
        /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="loggingAPIViewRequest"> (optional)</param>
        /// <returns>Dictionary&lt;string, Object&gt;</returns>
        public Dictionary <string, Object> LoggingLogMessagePOST(LoggingAPIViewRequest loggingAPIViewRequest = default(LoggingAPIViewRequest))
        {
            ApiResponse <Dictionary <string, Object> > localVarResponse = LoggingLogMessagePOSTWithHttpInfo(loggingAPIViewRequest);

            return(localVarResponse.Data);
        }