/// <summary>
        ///  Used to delete a token so that it may not initiate any new transactions. All authorizations for a deleted token will be declined. A deleted token may not be returned to an active state.
        /// </summary>
        /// <exception cref="YourApp.MdesCustomerClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="tokenDeleteRequestSchema">Contains the details of the request message. (optional)</param>
        /// <returns>Task of ApiResponse (TokenDeleteResponseSchema)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <TokenDeleteResponseSchema> > TokenDeletePostAsyncWithHttpInfo(TokenDeleteRequestSchema tokenDeleteRequestSchema = null)
        {
            var    localVarPath         = "/token/delete";
            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"
            };
            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 (tokenDeleteRequestSchema != null && tokenDeleteRequestSchema.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(tokenDeleteRequestSchema); // http body (model) parameter
            }
            else
            {
                localVarPostBody = tokenDeleteRequestSchema; // byte array
            }


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

            int localVarStatusCode = (int)localVarResponse.StatusCode;

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

            return(new ApiResponse <TokenDeleteResponseSchema>(localVarStatusCode,
                                                               localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                               (TokenDeleteResponseSchema)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(TokenDeleteResponseSchema))));
        }
        /// <summary>
        ///  Used to delete a token so that it may not initiate any new transactions. All authorizations for a deleted token will be declined. A deleted token may not be returned to an active state.
        /// </summary>
        /// <exception cref="YourApp.MdesCustomerClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="tokenDeleteRequestSchema">Contains the details of the request message. (optional)</param>
        /// <returns>Task of TokenDeleteResponseSchema</returns>
        public async System.Threading.Tasks.Task <TokenDeleteResponseSchema> TokenDeletePostAsync(TokenDeleteRequestSchema tokenDeleteRequestSchema = null)
        {
            ApiResponse <TokenDeleteResponseSchema> localVarResponse = await TokenDeletePostAsyncWithHttpInfo(tokenDeleteRequestSchema);

            return(localVarResponse.Data);
        }
        /// <summary>
        ///  Used to delete a token so that it may not initiate any new transactions. All authorizations for a deleted token will be declined. A deleted token may not be returned to an active state.
        /// </summary>
        /// <exception cref="YourApp.MdesCustomerClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="tokenDeleteRequestSchema">Contains the details of the request message. (optional)</param>
        /// <returns>TokenDeleteResponseSchema</returns>
        public TokenDeleteResponseSchema TokenDeletePost(TokenDeleteRequestSchema tokenDeleteRequestSchema = null)
        {
            ApiResponse <TokenDeleteResponseSchema> localVarResponse = TokenDeletePostWithHttpInfo(tokenDeleteRequestSchema);

            return(localVarResponse.Data);
        }