CocoaPods trunk is moving to be read-only. Read more on the blog, there are 13 months to go.
| TestsTested | ✓ |
| LangLanguage | SwiftSwift |
| License | MIT |
| ReleasedLast Release | Dec 2017 |
| SPMSupports SPM | ✗ |
Maintained by 1amageek.
| Depends on: | |
| APIKit | ~> 3.1.1 |
| Stripe | ~> 11.3.0 |
StripeAPI is a Framework that can handle Stripe type-safely.
pod 'StripeAPI' to your Podfile.pod install
All model definitions and API definitions have not been completed.
The Stripe API is faithfully made to the document.
let configure: Configuration = Configuration(secretKey: "sk_test_xxxxxxxx")Customer.Create().send { (result) in
case .success(let response): print(response)
case .failure(let error): print(error)
}