UNPKG

@tsclass/tsclass

Version:

Provides TypeScript definitions for various business, financial, networking, content, and other common classes.

16 lines (13 loc) 278 B
export interface ISepaConnection { institution?: string; iban: string; bic: string; } export interface IPayPalConnection { email: string; } export interface IPaymentOptionInfo { description?: string; sepaConnection: ISepaConnection; payPal: IPayPalConnection; }