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

#ifndef EmergencyInfo_H_
#define EmergencyInfo_H_


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

Tien-Thinh Nguyen's avatar
Tien-Thinh Nguyen committed
26
namespace oai::udr::model {
yangjian's avatar
yangjian committed
27 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 77 78 79 80 81 82 83 84

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

    void validate();

    /////////////////////////////////////////////
    /// EmergencyInfo members

    /// <summary>
    /// 
    /// </summary>
    std::string getPgwFqdn() const;
    void setPgwFqdn(std::string const& value);
    bool pgwFqdnIsSet() const;
    void unsetPgwFqdn();
    /// <summary>
    /// 
    /// </summary>
    IpAddress getPgwIpAddress() const;
    void setPgwIpAddress(IpAddress const& value);
    bool pgwIpAddressIsSet() const;
    void unsetPgwIpAddress();
    /// <summary>
    /// 
    /// </summary>
    std::string getSmfInstanceId() const;
    void setSmfInstanceId(std::string const& value);
    bool smfInstanceIdIsSet() const;
    void unsetSmfInstanceId();
    /// <summary>
    /// 
    /// </summary>
    bool isEpdgInd() const;
    void setEpdgInd(bool const value);
    bool epdgIndIsSet() const;
    void unsetEpdgInd();

    friend void to_json(nlohmann::json& j, const EmergencyInfo& o);
    friend void from_json(const nlohmann::json& j, EmergencyInfo& o);
protected:
    std::string m_PgwFqdn;
    bool m_PgwFqdnIsSet;
    IpAddress m_PgwIpAddress;
    bool m_PgwIpAddressIsSet;
    std::string m_SmfInstanceId;
    bool m_SmfInstanceIdIsSet;
    bool m_EpdgInd;
    bool m_EpdgIndIsSet;
};

}
Tien-Thinh Nguyen's avatar
Tien-Thinh Nguyen committed
85 86 87



yangjian's avatar
yangjian committed
88 89

#endif /* EmergencyInfo_H_ */