Skip to content

Repository files navigation

paymentprocessor - the C# library for the Payment Processor Service

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

This C# SDK is automatically generated by the OpenAPI Generator project:

  • API version: v1
  • SDK version: 1.0.0
  • Generator version: 7.9.0
  • Build package: org.openapitools.codegen.languages.CSharpClientCodegen

Frameworks supported

Dependencies

The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:

Install-Package RestSharp
Install-Package Newtonsoft.Json
Install-Package JsonSubTypes
Install-Package System.ComponentModel.Annotations

NOTE: RestSharp versions greater than 105.1.0 have a bug which causes file uploads to fail. See RestSharp#742. NOTE: RestSharp for .Net Core creates a new socket for each api call, which can lead to a socket exhaustion problem. See RestSharp#1406.

Installation

Run the following command to generate the DLL

  • [Mac/Linux] /bin/sh build.sh
  • [Windows] build.bat

Then include the DLL (under the bin folder) in the C# project, and use the namespaces:

using paymentprocessor.Api;
using paymentprocessor.Client;
using paymentprocessor.Model;

Packaging

A .nuspec is included with the project. You can follow the Nuget quickstart to create and publish packages.

This .nuspec uses placeholders from the .csproj, so build the .csproj directly:

nuget pack -Build -OutputDirectory out paymentprocessor.csproj

Then, publish to a local feed or other host and consume the new package via Nuget as usual.

Usage

To use the API client with a HTTP proxy, setup a System.Net.WebProxy

Configuration c = new Configuration();
System.Net.WebProxy webProxy = new System.Net.WebProxy("http://myProxyUrl:80/");
webProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
c.Proxy = webProxy;

Getting Started

using System.Collections.Generic;
using System.Diagnostics;
using paymentprocessor.Api;
using paymentprocessor.Client;
using paymentprocessor.Model;

namespace Example
{
    public class Example
    {
        public static void Main()
        {

            Configuration config = new Configuration();
            config.BasePath = "https://payment-processor.api.gogemini.io";
            // Configure API key authorization: Authorization
            config.ApiKey.Add("Authorization", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // config.ApiKeyPrefix.Add("Authorization", "Bearer");

            var apiInstance = new PaymentprocessorApi(config);
            var body = new PaymentprocessorAuthorizePaymentRequest(); // PaymentprocessorAuthorizePaymentRequest | 

            try
            {
                // Authorize Payment
                PaymentprocessorAuthorizePaymentResponse result = apiInstance.AuthorizePayment(body);
                Debug.WriteLine(result);
            }
            catch (ApiException e)
            {
                Debug.Print("Exception when calling PaymentprocessorApi.AuthorizePayment: " + e.Message );
                Debug.Print("Status Code: "+ e.ErrorCode);
                Debug.Print(e.StackTrace);
            }

        }
    }
}

Documentation for API Endpoints

All URIs are relative to https://payment-processor.api.gogemini.io

Class Method HTTP request Description
PaymentprocessorApi AuthorizePayment POST /paymentprocessor.Paymentprocessor/AuthorizePayment Authorize Payment
PaymentprocessorApi CreatePaymentMethod POST /paymentprocessor.Paymentprocessor/CreatePaymentMethod Create Payment Method
PaymentprocessorApi FinalizePayment POST /paymentprocessor.Paymentprocessor/FinalizePayment Finalize Payment
PaymentprocessorApi GetAvailablePaymentMethod POST /paymentprocessor.Paymentprocessor/GetAvailablePaymentMethod Get Available Payment Method
PaymentprocessorApi GetPaymentMethod POST /paymentprocessor.Paymentprocessor/GetPaymentMethod Get Payment Method
PaymentprocessorApi GetPaymentMethodConfiguration POST /paymentprocessor.Paymentprocessor/GetPaymentMethodConfiguration Get Payment Method Configuration
PaymentprocessorApi InitPayment POST /paymentprocessor.Paymentprocessor/InitPayment Init Payment
PaymentprocessorApi ListAvailablePaymentMethods POST /paymentprocessor.Paymentprocessor/ListAvailablePaymentMethods List Available Payment Methods
PaymentprocessorApi ListPaymentMethods POST /paymentprocessor.Paymentprocessor/ListPaymentMethods List Payment Methods
PaymentprocessorApi PerformPayment POST /paymentprocessor.Paymentprocessor/PerformPayment Perform Payment
PaymentprocessorApi PerformRefund POST /paymentprocessor.Paymentprocessor/PerformRefund Perform Refund
PaymentprocessorApi UpdatePayment POST /paymentprocessor.Paymentprocessor/UpdatePayment Update Payment
PaymentprocessorApi UpdatePaymentMethod POST /paymentprocessor.Paymentprocessor/UpdatePaymentMethod Update Payment Method
PaymentprocessorApi VoidPayment POST /paymentprocessor.Paymentprocessor/VoidPayment Void Payment

Documentation for Models

Documentation for Authorization

Authentication schemes defined for the API:

Authorization

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

standardAuthorization

  • Type: OAuth
  • Flow: implicit
  • Authorization URL:
  • Scopes: N/A

About

Gemini Commerce paymentprocessor csharp Client

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages