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

#ifndef GNbId_H_
#define GNbId_H_


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

namespace oai::udr::model {

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

    void validate();

    /////////////////////////////////////////////
    /// GNbId members

    /// <summary>
    /// 
    /// </summary>
    int32_t getBitLength() const;
    void setBitLength(int32_t const value);
    /// <summary>
    /// 
    /// </summary>
    std::string getGNBValue() const;
    void setGNBValue(std::string const& value);

    friend void to_json(nlohmann::json& j, const GNbId& o);
    friend void from_json(const nlohmann::json& j, GNbId& o);
protected:
    int32_t m_BitLength;

    std::string m_GNBValue;

};

}




#endif /* GNbId_H_ */