MeyerCorp.Square.V1 0.5.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package MeyerCorp.Square.V1 --version 0.5.1
NuGet\Install-Package MeyerCorp.Square.V1 -Version 0.5.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MeyerCorp.Square.V1" Version="0.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MeyerCorp.Square.V1 --version 0.5.1
#r "nuget: MeyerCorp.Square.V1, 0.5.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MeyerCorp.Square.V1 as a Cake Addin
#addin nuget:?package=MeyerCorp.Square.V1&version=0.5.1

// Install MeyerCorp.Square.V1 as a Cake Tool
#tool nuget:?package=MeyerCorp.Square.V1&version=0.5.1

Meyer Square V1 SDK for .NET Core

A software development kit in .NET Core for the Square API (V1)

Getting Started

  1. Use NuGet to include this in any .NET Core 2.1 project.

    Package-Install MeyerCorp.Square.V1

    Then write some code:

     using Microsoft.Rest;
     using Meyer.Square.V1;
    
     var credentials = new TokenCredentials(<your token>) as ServiceClientCredentials;
    
     using (var client = new Client(new Uri(baseurl), credentials)
     {
     	LocationId = "<your location ID>",
     })
     {
     	var payments = await client.PaymentOperations.GetAsync();
     }
    

Prerequisites

  • Create a developer account at Square.

Installing

(Check back soon.)

Running the tests

(Check back soon.)

Break down into end to end tests

(Check back soon.)

(Check back soon.)

And coding style tests

(Check back soon.)

(Check back soon.)

Deployment

(Check back soon.)

Built With

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Authors

  • Daniel Przybylski - Initial work - GitHub

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • The architecture is heavily based on the Microsoft REST Client generated when using a Open API standard to generated a REST API Client.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 733 1/29/2019
1.0.5 657 1/13/2019
1.0.2 660 1/11/2019
1.0.1 654 1/11/2019
1.0.0 655 1/9/2019
0.8.10 641 12/22/2018
0.7.1 638 11/7/2018
0.6.7 707 10/19/2018
0.6.6 716 10/12/2018
0.6.5 683 10/11/2018
0.6.0 746 10/10/2018
0.5.1 733 10/2/2018
0.5.0 736 10/1/2018
0.3.2 717 9/27/2018
0.3.1 738 9/26/2018
0.3.0 713 9/26/2018
0.2.0 723 9/25/2018
0.1.1 723 9/24/2018
0.1.0 697 9/21/2018
0.0.5 746 9/21/2018
0.0.4 672 9/20/2018
0.0.3 713 9/19/2018
0.0.2 729 9/19/2018
0.0.1 709 9/19/2018

In development: Bug fix: Could not handle a paginated collection where the Next URL link response header is null/empty.