示例#1
0
        /// <summary>
        ///   Used after an issuer has performed additional cardholder authentication to indicate an increased level of token assurance. It will only be applied to tokens that actually have a Token Assurance Level, and those that are in ACTIVE or SUSPENDED state.
        /// </summary>
        /// <exception cref="YourApp.MdesCustomerClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="updateTokenAssuranceRequestSchema">Contains the details of the request message. (optional)</param>
        /// <returns>Task of ApiResponse (UpdateTokenAssuranceResponseSchema)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <UpdateTokenAssuranceResponseSchema> > UpdatetokenassurancePostAsyncWithHttpInfo(UpdateTokenAssuranceRequestSchema updateTokenAssuranceRequestSchema = null)
        {
            var    localVarPath         = "/updatetokenassurance";
            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 (updateTokenAssuranceRequestSchema != null && updateTokenAssuranceRequestSchema.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(updateTokenAssuranceRequestSchema); // http body (model) parameter
            }
            else
            {
                localVarPostBody = updateTokenAssuranceRequestSchema; // 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("UpdatetokenassurancePost", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <UpdateTokenAssuranceResponseSchema>(localVarStatusCode,
                                                                        localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                                        (UpdateTokenAssuranceResponseSchema)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(UpdateTokenAssuranceResponseSchema))));
        }
示例#2
0
        /// <summary>
        ///   Used after an issuer has performed additional cardholder authentication to indicate an increased level of token assurance. It will only be applied to tokens that actually have a Token Assurance Level, and those that are in ACTIVE or SUSPENDED state.
        /// </summary>
        /// <exception cref="YourApp.MdesCustomerClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="updateTokenAssuranceRequestSchema">Contains the details of the request message. (optional)</param>
        /// <returns>Task of UpdateTokenAssuranceResponseSchema</returns>
        public async System.Threading.Tasks.Task <UpdateTokenAssuranceResponseSchema> UpdatetokenassurancePostAsync(UpdateTokenAssuranceRequestSchema updateTokenAssuranceRequestSchema = null)
        {
            ApiResponse <UpdateTokenAssuranceResponseSchema> localVarResponse = await UpdatetokenassurancePostAsyncWithHttpInfo(updateTokenAssuranceRequestSchema);

            return(localVarResponse.Data);
        }
示例#3
0
        /// <summary>
        ///   Used after an issuer has performed additional cardholder authentication to indicate an increased level of token assurance. It will only be applied to tokens that actually have a Token Assurance Level, and those that are in ACTIVE or SUSPENDED state.
        /// </summary>
        /// <exception cref="YourApp.MdesCustomerClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="updateTokenAssuranceRequestSchema">Contains the details of the request message. (optional)</param>
        /// <returns>UpdateTokenAssuranceResponseSchema</returns>
        public UpdateTokenAssuranceResponseSchema UpdatetokenassurancePost(UpdateTokenAssuranceRequestSchema updateTokenAssuranceRequestSchema = null)
        {
            ApiResponse <UpdateTokenAssuranceResponseSchema> localVarResponse = UpdatetokenassurancePostWithHttpInfo(updateTokenAssuranceRequestSchema);

            return(localVarResponse.Data);
        }