LeviLamina
Loading...
Searching...
No Matches
JSONSchemaValidation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cereal::ext::internal {
6
7struct JSONSchemaValidation {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<8, 16, ::std::optional<double>> mMultipleOf;
12 ::ll::TypedStorage<8, 16, ::std::optional<double>> mMinimum;
13 ::ll::TypedStorage<8, 16, ::std::optional<double>> mExclusiveMinimum;
14 ::ll::TypedStorage<8, 16, ::std::optional<double>> mMaximum;
15 ::ll::TypedStorage<8, 16, ::std::optional<double>> mExclusiveMaximum;
16 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMinLength;
17 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMaxLength;
18 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mPattern;
19 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mRegexFlags;
20 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMinItems;
21 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMaxItems;
22 ::ll::TypedStorage<1, 2, ::std::optional<bool>> mNoDuplicates;
23 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMinProperties;
24 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMaxProperties;
25 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mCustomDescription;
26 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mNonPublicConstraint;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 JSONSchemaValidation(JSONSchemaValidation const&);
32 JSONSchemaValidation();
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI ::cereal::ext::internal::JSONSchemaValidation&
39
40 MCAPI ~JSONSchemaValidation();
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCAPI void $dtor();
47 // NOLINTEND
48};
49
50} // namespace cereal::ext::internal
Definition JSONSchemaValidation.h:7