Esempio n. 1
0
        /// <summary>
        /// Create guarantee A case can be manually submitted for Guarantee. This is equivalent to clicking the Guarantee button in the case console. Note that you have 7 days from the order date to submit a case for Guarantee.
        /// </summary>
        /// <exception cref="AspDotNetStorefront.Signifyd.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <returns>Task of GuaranteeRequest</returns>
        public async System.Threading.Tasks.Task <GuaranteeRequest> CreateGuaranteeAsync(CreateGuaranteeRequest body)
        {
            ApiResponse <GuaranteeRequest> localVarResponse = await CreateGuaranteeAsyncWithHttpInfo(body);

            return(localVarResponse.Data);
        }
Esempio n. 2
0
        /// <summary>
        /// Create guarantee A case can be manually submitted for Guarantee. This is equivalent to clicking the Guarantee button in the case console. Note that you have 7 days from the order date to submit a case for Guarantee.
        /// </summary>
        /// <exception cref="AspDotNetStorefront.Signifyd.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <returns>Task of ApiResponse (GuaranteeRequest)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <GuaranteeRequest> > CreateGuaranteeAsyncWithHttpInfo(CreateGuaranteeRequest body)
        {
            // verify the required parameter 'body' is set
            if (body == null)
            {
                throw new ApiException(400, "Missing required parameter 'body' when calling GuaranteesApi->CreateGuarantee");
            }

            var    localVarPath         = "/guarantees";
            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[] {
                "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
            }


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

            return(new ApiResponse <GuaranteeRequest>(localVarStatusCode,
                                                      localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                      (GuaranteeRequest)Configuration.ApiClient.Deserialize(localVarResponse, typeof(GuaranteeRequest))));
        }
Esempio n. 3
0
        /// <summary>
        /// Create guarantee A case can be manually submitted for Guarantee. This is equivalent to clicking the Guarantee button in the case console. Note that you have 7 days from the order date to submit a case for Guarantee.
        /// </summary>
        /// <exception cref="AspDotNetStorefront.Signifyd.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <returns>GuaranteeRequest</returns>
        public GuaranteeRequest CreateGuarantee(CreateGuaranteeRequest body)
        {
            ApiResponse <GuaranteeRequest> localVarResponse = CreateGuaranteeWithHttpInfo(body);

            return(localVarResponse.Data);
        }