/**
 * Nudr_DataRepository API OpenAPI file
 * Unified Data Repository Service. © 2020, 3GPP Organizational Partners (ARIB,
 * ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
 *
 * The version of the OpenAPI document: 2.1.2
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator
 * (https://openapi-generator.tech). https://openapi-generator.tech Do not edit
 * the class manually.
 */

#include "TacInfo.h"

namespace oai::udr::model {

TacInfo::TacInfo() {}

TacInfo::~TacInfo() {}

void TacInfo::validate() {
  // TODO: implement validation
}

void to_json(nlohmann::json &j, const TacInfo &o) {
  j = nlohmann::json();
  j["tacList"] = o.m_TacList;
}

void from_json(const nlohmann::json &j, TacInfo &o) {
  j.at("tacList").get_to(o.m_TacList);
}

std::vector<std::string> &TacInfo::getTacList() { return m_TacList; }
void TacInfo::setTacList(std::vector<std::string> const &value) {
  m_TacList = value;
}

} // namespace oai::udr::model