UNPKG

digital-payments-sdk

Version:

The APIs detailed within this SDK will enable Shell's Fleet Solutions Customers to digitalize Shell Card/s and use them to pay to refuel their vehicles at Shell Stations.

28 lines (24 loc) 668 B
/** * Shell SmartPay APILib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { HttpClientOptions } from './clientAdapter'; /** An interface for all configuration parameters required by the SDK. */ export interface Configuration { timeout: number; environment: Environment; mppTokenCredentials?: { 'Authorization': string; }; oAuthTokenPostCredentials?: { 'X-Apigee-Authorization': string; }; httpClientOptions?: Partial<HttpClientOptions>; unstable_httpClientOptions?: any; } /** Environments available for API */ export enum Environment { Test = 'Test', Production = 'Production', }