LeviLamina
Loading...
Searching...
No Matches
MarketplaceWorldTemplateData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/services/requests/catalog/reviews/RatingData.h"
7#include "mc/client/store/StoreCatalogCategory.h"
8#include "mc/deps/core/file/PathBuffer.h"
9
10// auto generated forward declare list
11// clang-format off
12class StoreCatalogItem;
13// clang-format on
14
15namespace World {
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 32, ::std::string> mId;
22 ::ll::TypedStorage<8, 32, ::std::string> mName;
23 ::ll::TypedStorage<8, 32, ::std::string> mCreator;
24 ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mThumbnailPathBuffer;
25 ::ll::TypedStorage<8, 40, ::RatingData> mRatingData;
26 ::ll::TypedStorage<8, 32, ::std::string> mSubscriptionStartDate;
27 ::ll::TypedStorage<8, 32, ::std::string> mSubscriptionEndDate;
28 ::ll::TypedStorage<1, 1, bool> mIsExpired;
29 ::ll::TypedStorage<8, 32, ::std::string> mPackId;
30 ::ll::TypedStorage<1, 1, bool> mIsInstalled;
31 ::ll::TypedStorage<1, 1, bool> mIsUpdateAvailable;
32 ::ll::TypedStorage<4, 4, ::StoreCatalogCategory> mStoreCategory;
33 ::ll::TypedStorage<4, 4, int> mPrice;
34 ::ll::TypedStorage<4, 4, int> mFullPrice;
35 ::ll::TypedStorage<1, 1, bool> mIsFree;
36 ::ll::TypedStorage<1, 1, bool> mHasDiscount;
37 ::ll::TypedStorage<8, 32, ::std::string> mDiscountText;
38 // NOLINTEND
39
40public:
41 // prevent constructor by default
42 MarketplaceWorldTemplateData();
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCAPI MarketplaceWorldTemplateData(::World::MarketplaceWorldTemplateData const&);
48
49 MCAPI ::World::MarketplaceWorldTemplateData& operator=(::World::MarketplaceWorldTemplateData const&);
50
51 MCAPI ~MarketplaceWorldTemplateData();
52 // NOLINTEND
53
54public:
55 // static functions
56 // NOLINTBEGIN
57 MCAPI static ::World::MarketplaceWorldTemplateData
58 fromStoreCatalogItem(::StoreCatalogItem const& worldTemplateInfo);
59 // NOLINTEND
60
61public:
62 // constructor thunks
63 // NOLINTBEGIN
64 MCAPI void* $ctor(::World::MarketplaceWorldTemplateData const&);
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70 MCAPI void $dtor();
71 // NOLINTEND
72};
73
74} // namespace World
Definition MarketplaceWorldTemplateData.h:7