UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 419 B
import { HttpParameter } from './paymentMean/HttpParameter'; /** All data needed to use a payment mean */ export interface PaymentMean { /** */ fee: number; /** */ htmlForm?: string; /** */ httpMethod: string; /** */ logo?: string; /** */ parameters: HttpParameter[]; /** */ subType?: string; /** */ url: string; } //# sourceMappingURL=PaymentMean.d.ts.map