Files
openapi-generator/samples/server/petstore/cpp-httplib-server/feature-test/models/BankAccount.cpp
vasireddyrajesh b96334ffad Add standalone C++ server using cpp-httplib for OpenAPI-based APIs (#21724)
Supports:
All OpenAPI 3.x data types: primitives, arrays, enums, nullable/optional fields, nested objects
All parameter types: path, query, header, cookie, and combinations
Schema composition: allOf (inheritance), oneOf (discriminated unions), anyOf (flexible unions)
Security schemes: API key and bearer token authentication
Discriminator-based polymorphic deserialization and error handling

Provides:
Error handling for invalid JSON, type mismatches, missing/unknown discriminator, and parameter validation
Build system integration (CMake) for easy compilation and linking with required dependencies
Clear build and run instructions for local development and testing
Enables comprehensive, real-world validation of generated C++ server code against OpenAPI specifications
2026-02-12 19:41:05 +08:00

59 lines
1.1 KiB
C++

/**
* 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