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

#ifndef EcRestriction_H_
#define EcRestriction_H_


#include "PlmnEcInfo.h"
#include <string>
#include <vector>
#include <nlohmann/json.hpp>

namespace oai::udr::model {

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

    void validate();

    /////////////////////////////////////////////
    /// EcRestriction members

    /// <summary>
    /// 
    /// </summary>
    std::string getAfInstanceId() const;
    void setAfInstanceId(std::string const& value);
    /// <summary>
    /// 
    /// </summary>
    int32_t getReferenceId() const;
    void setReferenceId(int32_t const value);
    /// <summary>
    /// 
    /// </summary>
    std::vector<PlmnEcInfo>& getPlmnEcInfos();
    void setPlmnEcInfos(std::vector<PlmnEcInfo> const& value);
    bool plmnEcInfosIsSet() const;
    void unsetPlmnEcInfos();
    /// <summary>
    /// 
    /// </summary>
    std::string getMtcProviderInformation() const;
    void setMtcProviderInformation(std::string const& value);
    bool mtcProviderInformationIsSet() const;
    void unsetMtcProviderInformation();

    friend void to_json(nlohmann::json& j, const EcRestriction& o);
    friend void from_json(const nlohmann::json& j, EcRestriction& o);
protected:
    std::string m_AfInstanceId;

    int32_t m_ReferenceId;

    std::vector<PlmnEcInfo> m_PlmnEcInfos;
    bool m_PlmnEcInfosIsSet;
    std::string m_MtcProviderInformation;
    bool m_MtcProviderInformationIsSet;
};

}




#endif /* EcRestriction_H_ */