Example #1
0
        /// <summary>
        ///
        /// </summary>
        /// <exception cref="Dowding.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="agentTickDto"></param>
        /// <returns>Task of AgentTick</returns>
        public async System.Threading.Tasks.Task <AgentTick> AgentTickPostAsync(AgentTickDto agentTickDto)
        {
            ApiResponse <AgentTick> localVarResponse = await AgentTickPostAsyncWithHttpInfo(agentTickDto);

            return(localVarResponse.Data);
        }
Example #2
0
        /// <summary>
        ///
        /// </summary>
        /// <exception cref="Dowding.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="agentTickDto"></param>
        /// <returns>Task of ApiResponse (AgentTick)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <AgentTick> > AgentTickPostAsyncWithHttpInfo(AgentTickDto agentTickDto)
        {
            // verify the required parameter 'agentTickDto' is set
            if (agentTickDto == null)
            {
                throw new ApiException(400, "Missing required parameter 'agentTickDto' when calling AgentTickApi->AgentTickPost");
            }

            var    localVarPath         = "/agent/tick";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new Dictionary <String, String>();
            var    localVarHeaderParams = new Dictionary <String, String>(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"
            };
            String localVarHttpContentType = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

            // set "format" to json by default
            // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json
            localVarPathParams.Add("format", "json");
            if (agentTickDto != null && agentTickDto.GetType() != typeof(byte[]))
            {
                localVarPostBody = Configuration.ApiClient.Serialize(agentTickDto); // http body (model) parameter
            }
            else
            {
                localVarPostBody = agentTickDto; // byte array
            }

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

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

            int localVarStatusCode = (int)localVarResponse.StatusCode;

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

            return(new ApiResponse <AgentTick>(localVarStatusCode,
                                               localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                               (AgentTick)Configuration.ApiClient.Deserialize(localVarResponse, typeof(AgentTick))));
        }
Example #3
0
        /// <summary>
        ///
        /// </summary>
        /// <exception cref="Dowding.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="agentTickDto"></param>
        /// <returns>AgentTick</returns>
        public AgentTick AgentTickPost(AgentTickDto agentTickDto)
        {
            ApiResponse <AgentTick> localVarResponse = AgentTickPostWithHttpInfo(agentTickDto);

            return(localVarResponse.Data);
        }