LcsClientExternal.h 2.1 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 27
/**
* 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.
*/
/*
 * LcsClientExternal.h
 *
 * 
 */

#ifndef LcsClientExternal_H_
#define LcsClientExternal_H_


#include "GeographicArea.h"
#include "ValidTimePeriod.h"
#include "PrivacyCheckRelatedAction.h"
#include <vector>
#include <nlohmann/json.hpp>

Tien-Thinh Nguyen's avatar
Tien-Thinh Nguyen committed
28
namespace oai::udr::model {
yangjian's avatar
yangjian committed
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 77

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

    void validate();

    /////////////////////////////////////////////
    /// LcsClientExternal members

    /// <summary>
    /// 
    /// </summary>
    std::vector<GeographicArea>& getAllowedGeographicArea();
    void setAllowedGeographicArea(std::vector<GeographicArea> const& value);
    bool allowedGeographicAreaIsSet() const;
    void unsetAllowedGeographicArea();
    /// <summary>
    /// 
    /// </summary>
    PrivacyCheckRelatedAction getPrivacyCheckRelatedAction() const;
    void setPrivacyCheckRelatedAction(PrivacyCheckRelatedAction const& value);
    bool privacyCheckRelatedActionIsSet() const;
    void unsetPrivacyCheckRelatedAction();
    /// <summary>
    /// 
    /// </summary>
    ValidTimePeriod getValidTimePeriod() const;
    void setValidTimePeriod(ValidTimePeriod const& value);
    bool validTimePeriodIsSet() const;
    void unsetValidTimePeriod();

    friend void to_json(nlohmann::json& j, const LcsClientExternal& o);
    friend void from_json(const nlohmann::json& j, LcsClientExternal& o);
protected:
    std::vector<GeographicArea> m_AllowedGeographicArea;
    bool m_AllowedGeographicAreaIsSet;
    PrivacyCheckRelatedAction m_PrivacyCheckRelatedAction;
    bool m_PrivacyCheckRelatedActionIsSet;
    ValidTimePeriod m_ValidTimePeriod;
    bool m_ValidTimePeriodIsSet;
};

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



yangjian's avatar
yangjian committed
81 82

#endif /* LcsClientExternal_H_ */