/// <summary>
        /// Make an payment using orangemoney
        /// </summary>
        /// <exception cref="IO.SprintPay.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">object that needs to be added to the body of request</param>
        /// <returns>Task of PaymentMobileReponse</returns>
        public async System.Threading.Tasks.Task <PaymentMobileReponse> OrangemoneyAsync(Orangemoney body)
        {
            ApiResponse <PaymentMobileReponse> localVarResponse = await OrangemoneyAsyncWithHttpInfo(body);

            return(localVarResponse.Data);
        }
        /// <summary>
        /// Make an payment using orangemoney
        /// </summary>
        /// <exception cref="IO.SprintPay.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">object that needs to be added to the body of request</param>
        /// <returns>Task of ApiResponse (PaymentMobileReponse)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <PaymentMobileReponse> > OrangemoneyAsyncWithHttpInfo(Orangemoney body)
        {
            // verify the required parameter 'body' is set
            if (body == null)
            {
                throw new ApiException(400, "Missing required parameter 'body' when calling MobilePaymentApi->Orangemoney");
            }

            var    localVarPath         = "/payment/orangemoney/request";
            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"
            };
            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);
            }

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

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

            return(new ApiResponse <PaymentMobileReponse>(localVarStatusCode,
                                                          localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                          (PaymentMobileReponse)Configuration.ApiClient.Deserialize(localVarResponse, typeof(PaymentMobileReponse))));
        }
        /// <summary>
        /// Make an payment using orangemoney
        /// </summary>
        /// <exception cref="IO.SprintPay.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">object that needs to be added to the body of request</param>
        /// <returns>PaymentMobileReponse</returns>
        public PaymentMobileReponse Orangemoney(Orangemoney body)
        {
            ApiResponse <PaymentMobileReponse> localVarResponse = OrangemoneyWithHttpInfo(body);

            return(localVarResponse.Data);
        }