LeviLamina
Loading...
Searching...
No Matches
DeepLinkData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/UUID.h"
7
8namespace persona {
9
10class DeepLinkData {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 16, ::mce::UUID> mDeepLinkOfferId;
15 ::ll::TypedStorage<8, 32, ::std::string> mDeepLinkOfferIdStr;
16 ::ll::TypedStorage<8, 8, ::std::chrono::steady_clock::time_point> mDeepLinkStartTime;
17 ::ll::TypedStorage<8, 8, ::std::chrono::seconds> mDeepLinkExirationTime;
18 ::ll::TypedStorage<8, 64, ::std::function<void()>> mOnDeepLinkRequestHanledCallback;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual ~DeepLinkData() = default;
25 // NOLINTEND
26};
27
28} // namespace persona
Definition DeepLinkData.h:7