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.

27 lines (26 loc) 1.06 kB
/** * Shell SmartPay APILib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { PaymentProperties } from './paymentProperties'; /** Object containing Payment details */ export interface PaymentDetails { /** * The type of commercial transaction. Permitted value\: * * B2B */ paymentCategory?: string; /** * The payment method used to make the transaction. Possible values include: * * euroShell */ paymentMethodId: string; /** * Object containing Payment Property details Please note: * All the attributes are optional as they serve all payment methods (i.e. different payment methods require different fields to be filled/mandated). As a result, some of these fields will be mandatory depending on the selected payment method and the API will return an error if they are not completed */ paymentProperties: PaymentProperties; } export declare const paymentDetailsSchema: Schema<PaymentDetails>;