/**
* 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.
*/
/*
 * TnapId.h
 *
 * 
 */

#ifndef TnapId_H_
#define TnapId_H_


#include <string>
#include <nlohmann/json.hpp>

namespace oai::udr::model {

/// <summary>
/// 
/// </summary>
class  TnapId
{
public:
    TnapId();
    virtual ~TnapId();

    void validate();

    /////////////////////////////////////////////
    /// TnapId members

    /// <summary>
    /// 
    /// </summary>
    std::string getSsId() const;
    void setSsId(std::string const& value);
    bool ssIdIsSet() const;
    void unsetSsId();
    /// <summary>
    /// 
    /// </summary>
    std::string getBssId() const;
    void setBssId(std::string const& value);
    bool bssIdIsSet() const;
    void unsetBssId();
    /// <summary>
    /// 
    /// </summary>
    std::string getCivicAddress() const;
    void setCivicAddress(std::string const& value);
    bool civicAddressIsSet() const;
    void unsetCivicAddress();

    friend void to_json(nlohmann::json& j, const TnapId& o);
    friend void from_json(const nlohmann::json& j, TnapId& o);
protected:
    std::string m_SsId;
    bool m_SsIdIsSet;
    std::string m_BssId;
    bool m_BssIdIsSet;
    std::string m_CivicAddress;
    bool m_CivicAddressIsSet;
};

}




#endif /* TnapId_H_ */