ResynchronizationInfo.h 1.38 KB
Newer Older
hogostan's avatar
hogostan committed
1
/**
Keliang's avatar
Keliang committed
2 3 4 5 6 7 8 9 10 11 12
 * AUSF API
 * AUSF UE Authentication Service. © 2020, 3GPP Organizational Partners (ARIB,
 * ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
 *
 * The version of the OpenAPI document: 1.1.1
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator
 * (https://openapi-generator.tech). https://openapi-generator.tech Do not edit
 * the class manually.
 */
hogostan's avatar
hogostan committed
13 14 15
/*
 * ResynchronizationInfo.h
 *
Keliang's avatar
Keliang committed
16
 *
hogostan's avatar
hogostan committed
17 18 19 20 21 22
 */

#ifndef ResynchronizationInfo_H_
#define ResynchronizationInfo_H_

#include <nlohmann/json.hpp>
Keliang's avatar
Keliang committed
23
#include <string>
hogostan's avatar
hogostan committed
24 25 26 27 28 29 30

namespace org {
namespace openapitools {
namespace server {
namespace model {

/// <summary>
Keliang's avatar
Keliang committed
31
///
hogostan's avatar
hogostan committed
32
/// </summary>
Keliang's avatar
Keliang committed
33
class ResynchronizationInfo {
hogostan's avatar
hogostan committed
34
public:
Keliang's avatar
Keliang committed
35 36
  ResynchronizationInfo();
  virtual ~ResynchronizationInfo();
hogostan's avatar
hogostan committed
37

Keliang's avatar
Keliang committed
38
  void validate();
hogostan's avatar
hogostan committed
39

Keliang's avatar
Keliang committed
40 41
  /////////////////////////////////////////////
  /// ResynchronizationInfo members
hogostan's avatar
hogostan committed
42

Keliang's avatar
Keliang committed
43 44 45 46 47 48 49 50 51 52
  /// <summary>
  ///
  /// </summary>
  std::string getRand() const;
  void setRand(std::string const &value);
  /// <summary>
  ///
  /// </summary>
  std::string getAuts() const;
  void setAuts(std::string const &value);
hogostan's avatar
hogostan committed
53

Keliang's avatar
Keliang committed
54 55
  friend void to_json(nlohmann::json &j, const ResynchronizationInfo &o);
  friend void from_json(const nlohmann::json &j, ResynchronizationInfo &o);
hogostan's avatar
hogostan committed
56

Keliang's avatar
Keliang committed
57 58
protected:
  std::string m_Rand;
hogostan's avatar
hogostan committed
59

Keliang's avatar
Keliang committed
60
  std::string m_Auts;
hogostan's avatar
hogostan committed
61 62
};

Keliang's avatar
Keliang committed
63 64 65 66
} // namespace model
} // namespace server
} // namespace openapitools
} // namespace org
hogostan's avatar
hogostan committed
67 68

#endif /* ResynchronizationInfo_H_ */