node-ovh-ts
Version:
OVH API wrapper library for TypeScript
18 lines (15 loc) • 577 B
TypeScript
import { PaymentMethodIntegrationType } from './PaymentMethodIntegrationType.js';
import { PaymentMethodIcon } from './PaymentMethodIcon.js';
type PaymentMethodAvailablePaymentMethod = {
formSessionId?: string | null;
icon?: PaymentMethodIcon;
integration?: PaymentMethodIntegrationType;
merchantId?: string | null;
oneshot?: boolean;
organizationId?: string | null;
paymentSubType?: string | null;
paymentType?: string;
registerable?: boolean;
registerableWithTransaction?: boolean;
};
export { PaymentMethodAvailablePaymentMethod };