GroupIdentifiers.h 1.76 KB
Newer Older
yangjian's avatar
yangjian committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/**
* 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.
*/
/*
 * GroupIdentifiers.h
 *
 * 
 */

#ifndef GroupIdentifiers_H_
#define GroupIdentifiers_H_


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

Tien-Thinh Nguyen's avatar
Tien-Thinh Nguyen committed
27
namespace oai::udr::model {
yangjian's avatar
yangjian committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

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

    void validate();

    /////////////////////////////////////////////
    /// GroupIdentifiers members

    /// <summary>
    /// 
    /// </summary>
    std::string getExtGroupId() const;
    void setExtGroupId(std::string const& value);
    bool extGroupIdIsSet() const;
    void unsetExtGroupId();
    /// <summary>
    /// 
    /// </summary>
    std::string getIntGroupId() const;
    void setIntGroupId(std::string const& value);
    bool intGroupIdIsSet() const;
    void unsetIntGroupId();
    /// <summary>
    /// 
    /// </summary>
    std::vector<UeId>& getUeIdList();
    void setUeIdList(std::vector<UeId> const& value);
    bool ueIdListIsSet() const;
    void unsetUeIdList();

    friend void to_json(nlohmann::json& j, const GroupIdentifiers& o);
    friend void from_json(const nlohmann::json& j, GroupIdentifiers& o);
protected:
    std::string m_ExtGroupId;
    bool m_ExtGroupIdIsSet;
    std::string m_IntGroupId;
    bool m_IntGroupIdIsSet;
    std::vector<UeId> m_UeIdList;
    bool m_UeIdListIsSet;
};

}
Tien-Thinh Nguyen's avatar
Tien-Thinh Nguyen committed
77 78 79



yangjian's avatar
yangjian committed
80 81

#endif /* GroupIdentifiers_H_ */