declare enum PaymentInformationType {
    SEPA_MANDATE = "sepa_mandate",
    SEPA = "sepa",
    SWIFT = "swift",
    CREDIT_CARD = "credit_card",
    CASH = "cash"
}

export { PaymentInformationType };
