/** * This file is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ #include "BankAccount.h" namespace models { BankAccount::BankAccount() : paymentType("") , accountNumber("") , bankName("") { } // ========================================= // ===== Getters/Setters ===== // ========================================= // =================== // ===== Getters ===== // =================== std::string BankAccount::getPaymentType() const { return paymentType; } std::string BankAccount::getAccountNumber() const { return accountNumber; } std::string BankAccount::getBankName() const { return bankName; } // =================== // ===== Setters ===== // =================== void BankAccount::setPaymentType(const std::string& paymentTypeObj) { paymentType = paymentTypeObj; } void BankAccount::setAccountNumber(const std::string& accountNumberObj) { accountNumber = accountNumberObj; } void BankAccount::setBankName(const std::string& bankNameObj) { bankName = bankNameObj; } } // namespace models