src/app/interfaces/payment-information.ts
Payment information interface
Properties |
accountOwner |
accountOwner:
|
Type : string
|
Defined in src/app/interfaces/payment-information.ts:7
|
Account owner |
bic |
bic:
|
Type : string
|
Defined in src/app/interfaces/payment-information.ts:9
|
BIC |
iban |
iban:
|
Type : string
|
Defined in src/app/interfaces/payment-information.ts:11
|
IBAN |
export interface PaymentInformation {
/** Account owner */
accountOwner: string;
/** BIC */
bic: string;
/** IBAN */
iban: string;
}