LeviLamina
Loading...
Searching...
No Matches
EduResponseError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/http/StatusCode.h"
7#include "mc/social/EduResponseType.h"
8
9namespace Social {
10
11struct EduResponseError {
12public:
13 // member variables
14 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 EduResponseError& operator=(EduResponseError const&);
24 EduResponseError(EduResponseError const&);
25 EduResponseError();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30#ifdef LL_PLAT_C
31 MCNAPI EduResponseError(
32 ::Social::EduResponseType _type,
33 ::Bedrock::Http::StatusCode _code,
34 ::std::string _message,
35 ::std::vector<::std::string> _serverIds
36 );
37
38 MCNAPI ~EduResponseError();
39#endif
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45#ifdef LL_PLAT_C
46 MCNAPI void* $ctor(
47 ::Social::EduResponseType _type,
48 ::Bedrock::Http::StatusCode _code,
49 ::std::string _message,
50 ::std::vector<::std::string> _serverIds
51 );
52#endif
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58#ifdef LL_PLAT_C
59 MCNAPI void $dtor();
60#endif
61 // NOLINTEND
62};
63
64} // namespace Social
Definition Alias.h:14