├── .gitignore ├── NuGet.Config ├── README.md ├── license.txt ├── src ├── Directory.Build.props ├── Stripe.sln ├── Stripe │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Stripe.Core.csproj │ ├── Stripe.csproj │ └── StripeGateway.cs └── servicestack.snk └── tests ├── Directory.Build.props └── Stripe.Tests ├── .vscode ├── launch.json └── tasks.json ├── Properties └── AssemblyInfo.cs ├── Stripe.Tests.csproj ├── StripeGatewayAccountTests.cs ├── StripeGatewayCardTests.cs ├── StripeGatewayChargeTests.cs ├── StripeGatewayChargeTestsAsync.cs ├── StripeGatewayCouponTests.cs ├── StripeGatewayCustomerTests.cs ├── StripeGatewayCustomerTestsAsync.cs ├── StripeGatewayDiscountsTests.cs ├── StripeGatewayInvoiceTests.cs ├── StripeGatewayPlanTests.cs ├── StripeGatewayProductTests.cs ├── StripeGatewaySubscriptionTests.cs └── TestsBase.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/.gitignore -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/license.txt -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Stripe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/src/Stripe.sln -------------------------------------------------------------------------------- /src/Stripe/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/src/Stripe/.vscode/launch.json -------------------------------------------------------------------------------- /src/Stripe/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/src/Stripe/.vscode/tasks.json -------------------------------------------------------------------------------- /src/Stripe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/src/Stripe/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Stripe/Stripe.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/src/Stripe/Stripe.Core.csproj -------------------------------------------------------------------------------- /src/Stripe/Stripe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/src/Stripe/Stripe.csproj -------------------------------------------------------------------------------- /src/Stripe/StripeGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/src/Stripe/StripeGateway.cs -------------------------------------------------------------------------------- /src/servicestack.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/src/servicestack.snk -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/Stripe.Tests/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/.vscode/launch.json -------------------------------------------------------------------------------- /tests/Stripe.Tests/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/.vscode/tasks.json -------------------------------------------------------------------------------- /tests/Stripe.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/Stripe.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/Stripe.Tests.csproj -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewayAccountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewayAccountTests.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewayCardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewayCardTests.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewayChargeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewayChargeTests.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewayChargeTestsAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewayChargeTestsAsync.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewayCouponTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewayCouponTests.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewayCustomerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewayCustomerTests.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewayCustomerTestsAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewayCustomerTestsAsync.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewayDiscountsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewayDiscountsTests.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewayInvoiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewayInvoiceTests.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewayPlanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewayPlanTests.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewayProductTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewayProductTests.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/StripeGatewaySubscriptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/StripeGatewaySubscriptionTests.cs -------------------------------------------------------------------------------- /tests/Stripe.Tests/TestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStack/Stripe/HEAD/tests/Stripe.Tests/TestsBase.cs --------------------------------------------------------------------------------