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

#ifndef CagInfo_H_
#define CagInfo_H_


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

namespace oai::udr::model {

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

    void validate();

    /////////////////////////////////////////////
    /// CagInfo members

    /// <summary>
    /// 
    /// </summary>
    std::vector<std::string>& getAllowedCagList();
    void setAllowedCagList(std::vector<std::string> const& value);
    /// <summary>
    /// 
    /// </summary>
    bool isCagOnlyIndicator() const;
    void setCagOnlyIndicator(bool const value);
    bool cagOnlyIndicatorIsSet() const;
    void unsetCagOnlyIndicator();

    friend void to_json(nlohmann::json& j, const CagInfo& o);
    friend void from_json(const nlohmann::json& j, CagInfo& o);
protected:
    std::vector<std::string> m_AllowedCagList;

    bool m_CagOnlyIndicator;
    bool m_CagOnlyIndicatorIsSet;
};

}




#endif /* CagInfo_H_ */