/// <summary>
 /// Send an Authorization code
 /// </summary>
 /// <exception cref="FortifyAPI.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="requestModel">the username, password, and authorization method</param>
 /// <returns>Task of void</returns>
 public async System.Threading.Tasks.Task MultiFactorAuthorizationCodeV3PostAsync(PostMultiFactorAuthorizationCodeRequest requestModel)
 {
     await MultiFactorAuthorizationCodeV3PostAsyncWithHttpInfo(requestModel);
 }
        /// <summary>
        /// Send an Authorization code
        /// </summary>
        /// <exception cref="FortifyAPI.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="requestModel">the username, password, and authorization method</param>
        /// <returns>Task of ApiResponse</returns>
        public async System.Threading.Tasks.Task <ApiResponse <Object> > MultiFactorAuthorizationCodeV3PostAsyncWithHttpInfo(PostMultiFactorAuthorizationCodeRequest requestModel)
        {
            // verify the required parameter 'requestModel' is set
            if (requestModel == null)
            {
                throw new ApiException(400, "Missing required parameter 'requestModel' when calling MultiFactorAuthorizationCodeApi->MultiFactorAuthorizationCodeV3Post");
            }

            var    localVarPath         = "/api/v3/multi-factor-authorization-code";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new List <KeyValuePair <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",
                "text/json",
                "application/xml",
                "text/xml",
                "application/x-www-form-urlencoded",
                "multipart/form-data"
            };
            String localVarHttpContentType = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

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


            // 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("MultiFactorAuthorizationCodeV3Post", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <Object>(localVarStatusCode,
                                            localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                            null));
        }
 /// <summary>
 /// Send an Authorization code
 /// </summary>
 /// <exception cref="FortifyAPI.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="requestModel">the username, password, and authorization method</param>
 /// <returns></returns>
 public void MultiFactorAuthorizationCodeV3Post(PostMultiFactorAuthorizationCodeRequest requestModel)
 {
     MultiFactorAuthorizationCodeV3PostWithHttpInfo(requestModel);
 }