Commit 78bf6be9 authored by gibbs's avatar gibbs

fix OneOfAv5gAkastring bug

parent 5720c168
...@@ -64,11 +64,11 @@ void UEAuthenticationCtx::setAuthType(AuthType const& value) ...@@ -64,11 +64,11 @@ void UEAuthenticationCtx::setAuthType(AuthType const& value)
{ {
m_AuthType = value; m_AuthType = value;
} }
OneOfAv5gAkastring UEAuthenticationCtx::getR5gAuthData() const Av5gAka UEAuthenticationCtx::getR5gAuthData() const
{ {
return m_r_5gAuthData; return m_r_5gAuthData;
} }
void UEAuthenticationCtx::setR5gAuthData(OneOfAv5gAkastring const& value) void UEAuthenticationCtx::setR5gAuthData(Av5gAka const& value)
{ {
m_r_5gAuthData = value; m_r_5gAuthData = value;
} }
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#define UEAuthenticationCtx_H_ #define UEAuthenticationCtx_H_
#include "OneOfAv5gAkastring.h" #include "Av5gAka.h"
#include "LinksValueSchema.h" #include "LinksValueSchema.h"
#include "AuthType.h" #include "AuthType.h"
#include <string> #include <string>
...@@ -54,8 +54,8 @@ public: ...@@ -54,8 +54,8 @@ public:
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
OneOfAv5gAkastring getR5gAuthData() const; Av5gAka getR5gAuthData() const;
void setR5gAuthData(OneOfAv5gAkastring const& value); void setR5gAuthData(Av5gAka const& value);
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
...@@ -74,7 +74,7 @@ public: ...@@ -74,7 +74,7 @@ public:
protected: protected:
AuthType m_AuthType; AuthType m_AuthType;
OneOfAv5gAkastring m_r_5gAuthData; Av5gAka m_r_5gAuthData;
std::map<std::string, LinksValueSchema> m__links; std::map<std::string, LinksValueSchema> m__links;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment