Example #1
0
        /// <summary>
        ///
        /// </summary>
        /// <exception cref="VmosoApiClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="input">LeaveSwitchboard Input</param>
        /// <returns>Task of LeaveSwitchboardResult</returns>
        public async System.Threading.Tasks.Task <LeaveSwitchboardResult> LeaveSwitchboardAsync(LeaveSwitchboardInput input)
        {
            ApiResponse <LeaveSwitchboardResult> localVarResponse = await LeaveSwitchboardAsyncWithHttpInfo(input);

            return(localVarResponse.Data);
        }
Example #2
0
        /// <summary>
        ///
        /// </summary>
        /// <exception cref="VmosoApiClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="input">LeaveSwitchboard Input</param>
        /// <returns>Task of ApiResponse (LeaveSwitchboardResult)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <LeaveSwitchboardResult> > LeaveSwitchboardAsyncWithHttpInfo(LeaveSwitchboardInput input)
        {
            // verify the required parameter 'input' is set
            if (input == null)
            {
                throw new ApiException(400, "Missing required parameter 'input' when calling SwitchboardApi->LeaveSwitchboard");
            }

            var    localVarPath         = "/switchboard/leave";
            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[] {
            };
            String localVarHttpContentType    = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

            // to determine the Accept header
            String[] localVarHttpHeaderAccepts = new String[] {
                "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 (input != null && input.GetType() != typeof(byte[]))
            {
                localVarPostBody = Configuration.ApiClient.Serialize(input); // http body (model) parameter
            }
            else
            {
                localVarPostBody = input; // byte array
            }

            // authentication (vmoso_auth) required
            if (!String.IsNullOrEmpty(Configuration.GetApiKeyWithPrefix("X-CV-Authorization")))
            {
                localVarHeaderParams["X-CV-Authorization"] = Configuration.GetApiKeyWithPrefix("X-CV-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("LeaveSwitchboard", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <LeaveSwitchboardResult>(localVarStatusCode,
                                                            localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                            (LeaveSwitchboardResult)Configuration.ApiClient.Deserialize(localVarResponse, typeof(LeaveSwitchboardResult))));
        }
Example #3
0
        /// <summary>
        ///
        /// </summary>
        /// <exception cref="VmosoApiClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="input">LeaveSwitchboard Input</param>
        /// <returns>LeaveSwitchboardResult</returns>
        public LeaveSwitchboardResult LeaveSwitchboard(LeaveSwitchboardInput input)
        {
            ApiResponse <LeaveSwitchboardResult> localVarResponse = LeaveSwitchboardWithHttpInfo(input);

            return(localVarResponse.Data);
        }