SDK Interface API

HyperSDK has been structured so that it exposes a limited set of generic Apis which covers the structure of the constantly changing payments ecosystem. This enables the consumption of new features seamlessly and with very minimal changes.

Android

An instance of HyperServices should be created with a fragment activity instance and a viewgroup instance as its parameters.

HyperServices hyperInstance  = new HyperServices(fragmentActivity, viewgroup);

iOS

An instance of Hyper should be created before making any API calls.

let hyperInstance = HyperServices()
HyperServices *hyperInstance = [HyperServices new];

🚧

All API's are triggered on an instance of HyperServices.

SDK interfaces


What’s Next