Skip to content

Commit

Permalink
Automated commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
maxio-sdk committed Sep 27, 2024
1 parent 31b1df8 commit 3598314
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 55 deletions.
6 changes: 3 additions & 3 deletions AdvancedBilling.Standard/AdvancedBilling.Standard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Maxio.AdvancedBillingSdk</AssemblyName>
<Version>5.1.1.0</Version>
<Version>5.1.0.0</Version>
<Authors>MaxioSdk</Authors>
<Owners></Owners>
<Product>AdvancedBilling.Standard</Product>
<Copyright>Copyright © 2019</Copyright>
<AssemblyVersion>5.1.1.0</AssemblyVersion>
<FileVersion>5.1.1.0</FileVersion>
<AssemblyVersion>5.1.0.0</AssemblyVersion>
<FileVersion>5.1.0.0</FileVersion>
<Description>Ultimate billing and pricing flexibility for B2B SaaS.
Maxio integrates directly into your product, so you can seamlessly manage your product catalog, bill customers, and collect payments.</Description>
<LangVersion>7.3</LangVersion>
Expand Down
2 changes: 1 addition & 1 deletion AdvancedBilling.Standard/AdvancedBillingClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class AdvancedBillingClient : IConfiguration
};

private readonly GlobalConfiguration globalConfiguration;
private const string userAgent = "AB SDK DotNet:5.1.1 on OS {os-info}";
private const string userAgent = "AB SDK DotNet:5.1.0 on OS {os-info}";
private readonly HttpCallback httpCallback;
private readonly Lazy<APIExportsController> aPIExports;
private readonly Lazy<AdvanceInvoiceController> advanceInvoice;
Expand Down
10 changes: 5 additions & 5 deletions AdvancedBilling.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26430.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdvancedBilling.Standard", "AdvancedBilling.Standard/AdvancedBilling.Standard.csproj", "{f4d6b02b-fb7f-4fff-871d-18fe19040655}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdvancedBilling.Standard", "AdvancedBilling.Standard/AdvancedBilling.Standard.csproj", "{f508c6d3-1fe8-4922-b963-15cdaab2b9fd}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{f4d6b02b-fb7f-4fff-871d-18fe19040655}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{f4d6b02b-fb7f-4fff-871d-18fe19040655}.Debug|Any CPU.Build.0 = Debug|Any CPU
{f4d6b02b-fb7f-4fff-871d-18fe19040655}.Release|Any CPU.ActiveCfg = Release|Any CPU
{f4d6b02b-fb7f-4fff-871d-18fe19040655}.Release|Any CPU.Build.0 = Release|Any CPU
{f508c6d3-1fe8-4922-b963-15cdaab2b9fd}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{f508c6d3-1fe8-4922-b963-15cdaab2b9fd}.Debug|Any CPU.Build.0 = Debug|Any CPU
{f508c6d3-1fe8-4922-b963-15cdaab2b9fd}.Release|Any CPU.ActiveCfg = Release|Any CPU
{f508c6d3-1fe8-4922-b963-15cdaab2b9fd}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
92 changes: 46 additions & 46 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ curl -u <api_key>:x -H Accept:application/json -H Content-Type:application/json
If you are building with .NET CLI tools then you can also use the following command:

```bash
dotnet add package Maxio.AdvancedBillingSdk --version 5.1.1
dotnet add package Maxio.AdvancedBillingSdk --version 5.1.0
```

You can also view the package at:
https://www.nuget.org/packages/Maxio.AdvancedBillingSdk/5.1.1
https://www.nuget.org/packages/Maxio.AdvancedBillingSdk/5.1.0

## Initialize the API Client

**_Note:_** Documentation for the client can be found [here.](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/client.md)
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/client.md)

The following parameters are configurable for the API Client:

Expand All @@ -48,7 +48,7 @@ The following parameters are configurable for the API Client:
| `Domain` | `string` | The Advanced Billing server domain.<br>*Default*: `"chargify.com"` |
| `Environment` | `Environment` | The API environment. <br> **Default: `Environment.Production`** |
| `Timeout` | `TimeSpan` | Http client timeout.<br>*Default*: `TimeSpan.FromSeconds(120)` |
| `BasicAuthCredentials` | [`BasicAuthCredentials`](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/auth/basic-authentication.md) | The Credentials Setter for Basic Authentication |
| `BasicAuthCredentials` | [`BasicAuthCredentials`](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/auth/basic-authentication.md) | The Credentials Setter for Basic Authentication |

The API client can be initialized as follows:

Expand Down Expand Up @@ -81,52 +81,52 @@ The SDK can be configured to use a different environment for making API calls. A

This API uses the following authentication schemes.

* [`BasicAuth (Basic Authentication)`](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/auth/basic-authentication.md)
* [`BasicAuth (Basic Authentication)`](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/auth/basic-authentication.md)

## List of APIs

* [API Exports](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/api-exports.md)
* [Advance Invoice](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/advance-invoice.md)
* [Billing Portal](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/billing-portal.md)
* [Component Price Points](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/component-price-points.md)
* [Custom Fields](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/custom-fields.md)
* [Events-Based Billing Segments](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/events-based-billing-segments.md)
* [Payment Profiles](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/payment-profiles.md)
* [Product Families](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/product-families.md)
* [Product Price Points](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/product-price-points.md)
* [Proforma Invoices](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/proforma-invoices.md)
* [Reason Codes](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/reason-codes.md)
* [Referral Codes](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/referral-codes.md)
* [Sales Commissions](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/sales-commissions.md)
* [Subscription Components](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/subscription-components.md)
* [Subscription Groups](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/subscription-groups.md)
* [Subscription Group Invoice Account](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/subscription-group-invoice-account.md)
* [Subscription Group Status](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/subscription-group-status.md)
* [Subscription Invoice Account](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/subscription-invoice-account.md)
* [Subscription Notes](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/subscription-notes.md)
* [Subscription Products](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/subscription-products.md)
* [Subscription Status](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/subscription-status.md)
* [Coupons](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/coupons.md)
* [Components](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/components.md)
* [Customers](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/customers.md)
* [Events](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/events.md)
* [Insights](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/insights.md)
* [Invoices](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/invoices.md)
* [Offers](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/offers.md)
* [Products](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/products.md)
* [Sites](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/sites.md)
* [Subscriptions](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/subscriptions.md)
* [Webhooks](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/controllers/webhooks.md)
* [API Exports](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/api-exports.md)
* [Advance Invoice](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/advance-invoice.md)
* [Billing Portal](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/billing-portal.md)
* [Component Price Points](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/component-price-points.md)
* [Custom Fields](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/custom-fields.md)
* [Events-Based Billing Segments](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/events-based-billing-segments.md)
* [Payment Profiles](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/payment-profiles.md)
* [Product Families](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/product-families.md)
* [Product Price Points](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/product-price-points.md)
* [Proforma Invoices](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/proforma-invoices.md)
* [Reason Codes](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/reason-codes.md)
* [Referral Codes](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/referral-codes.md)
* [Sales Commissions](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/sales-commissions.md)
* [Subscription Components](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/subscription-components.md)
* [Subscription Groups](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/subscription-groups.md)
* [Subscription Group Invoice Account](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/subscription-group-invoice-account.md)
* [Subscription Group Status](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/subscription-group-status.md)
* [Subscription Invoice Account](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/subscription-invoice-account.md)
* [Subscription Notes](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/subscription-notes.md)
* [Subscription Products](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/subscription-products.md)
* [Subscription Status](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/subscription-status.md)
* [Coupons](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/coupons.md)
* [Components](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/components.md)
* [Customers](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/customers.md)
* [Events](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/events.md)
* [Insights](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/insights.md)
* [Invoices](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/invoices.md)
* [Offers](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/offers.md)
* [Products](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/products.md)
* [Sites](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/sites.md)
* [Subscriptions](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/subscriptions.md)
* [Webhooks](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/controllers/webhooks.md)

## Classes Documentation

* [Utility Classes](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/utility-classes.md)
* [HttpRequest](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/http-request.md)
* [HttpResponse](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/http-response.md)
* [HttpStringResponse](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/http-string-response.md)
* [HttpContext](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/http-context.md)
* [HttpClientConfiguration](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/http-client-configuration.md)
* [HttpClientConfiguration Builder](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/http-client-configuration-builder.md)
* [IAuthManager](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/i-auth-manager.md)
* [ApiException](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.1/doc/api-exception.md)
* [Utility Classes](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/utility-classes.md)
* [HttpRequest](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/http-request.md)
* [HttpResponse](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/http-response.md)
* [HttpStringResponse](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/http-string-response.md)
* [HttpContext](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/http-context.md)
* [HttpClientConfiguration](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/http-client-configuration.md)
* [HttpClientConfiguration Builder](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/http-client-configuration-builder.md)
* [IAuthManager](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/i-auth-manager.md)
* [ApiException](https://www.github.com/maxio-com/ab-dotnet-sdk/tree/5.1.0/doc/api-exception.md)

0 comments on commit 3598314

Please sign in to comment.