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.
15 lines (14 loc) • 867 B
TypeScript
/**
* Shell SmartPay APILib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
/** The response of prepare fueling returns */
export interface PrepareFuelingResponse {
/** The unique identifier of the Order. NB at this stage the Customer hasn’t actually bought anything so there’s no formal transaction associated with the Order. A transaction is not processed until refuelling has been completed successfully and will be triggered by returning the nozzle to the pump. */
mppTransactionId: string;
/** An array of Strings that contain the list of products that the user can purchase at the specified Station/Pump. The text is localized based on the country. */
products?: string[];
}
export declare const prepareFuelingResponseSchema: Schema<PrepareFuelingResponse>;