@@ -56,7 +56,11 @@ enum class [[nodiscard]] TaskState
56
56
57
57
struct [[nodiscard]] CompleteTaskInput
58
58
{
59
- explicit CompleteTaskInput (response::IdType&& idArg = response::IdType {}, std::optional<TaskState>&& testTaskStateArg = std::optional<TaskState> {}, std::optional<bool >&& isCompleteArg = std::optional<bool > {}, std::optional<std::string>&& clientMutationIdArg = std::optional<std::string> {}) noexcept ;
59
+ explicit CompleteTaskInput (
60
+ response::IdType idArg = response::IdType {},
61
+ std::optional<TaskState> testTaskStateArg = std::optional<TaskState> {},
62
+ std::optional<bool > isCompleteArg = std::optional<bool > {},
63
+ std::optional<std::string> clientMutationIdArg = std::optional<std::string> {}) noexcept ;
60
64
CompleteTaskInput (const CompleteTaskInput& other);
61
65
CompleteTaskInput (CompleteTaskInput&& other) noexcept ;
62
66
@@ -73,7 +77,9 @@ struct SecondNestedInput;
73
77
74
78
struct [[nodiscard]] ThirdNestedInput
75
79
{
76
- explicit ThirdNestedInput (response::IdType&& idArg = response::IdType {}, std::unique_ptr<SecondNestedInput>&& secondArg = std::unique_ptr<SecondNestedInput> {}) noexcept ;
80
+ explicit ThirdNestedInput (
81
+ response::IdType idArg = response::IdType {},
82
+ std::unique_ptr<SecondNestedInput> secondArg = std::unique_ptr<SecondNestedInput> {}) noexcept ;
77
83
ThirdNestedInput (const ThirdNestedInput& other);
78
84
ThirdNestedInput (ThirdNestedInput&& other) noexcept ;
79
85
@@ -86,7 +92,8 @@ struct [[nodiscard]] ThirdNestedInput
86
92
87
93
struct [[nodiscard]] FourthNestedInput
88
94
{
89
- explicit FourthNestedInput (response::IdType&& idArg = response::IdType {}) noexcept ;
95
+ explicit FourthNestedInput (
96
+ response::IdType idArg = response::IdType {}) noexcept ;
90
97
FourthNestedInput (const FourthNestedInput& other);
91
98
FourthNestedInput (FourthNestedInput&& other) noexcept ;
92
99
@@ -98,7 +105,8 @@ struct [[nodiscard]] FourthNestedInput
98
105
99
106
struct [[nodiscard]] IncludeNullableSelfInput
100
107
{
101
- explicit IncludeNullableSelfInput (std::unique_ptr<IncludeNullableSelfInput>&& selfArg = std::unique_ptr<IncludeNullableSelfInput> {}) noexcept ;
108
+ explicit IncludeNullableSelfInput (
109
+ std::unique_ptr<IncludeNullableSelfInput> selfArg = std::unique_ptr<IncludeNullableSelfInput> {}) noexcept ;
102
110
IncludeNullableSelfInput (const IncludeNullableSelfInput& other);
103
111
IncludeNullableSelfInput (IncludeNullableSelfInput&& other) noexcept ;
104
112
@@ -110,7 +118,8 @@ struct [[nodiscard]] IncludeNullableSelfInput
110
118
111
119
struct [[nodiscard]] IncludeNonNullableListSelfInput
112
120
{
113
- explicit IncludeNonNullableListSelfInput (std::vector<IncludeNonNullableListSelfInput>&& selvesArg = std::vector<IncludeNonNullableListSelfInput> {}) noexcept ;
121
+ explicit IncludeNonNullableListSelfInput (
122
+ std::vector<IncludeNonNullableListSelfInput> selvesArg = std::vector<IncludeNonNullableListSelfInput> {}) noexcept ;
114
123
IncludeNonNullableListSelfInput (const IncludeNonNullableListSelfInput& other);
115
124
IncludeNonNullableListSelfInput (IncludeNonNullableListSelfInput&& other) noexcept ;
116
125
@@ -122,7 +131,19 @@ struct [[nodiscard]] IncludeNonNullableListSelfInput
122
131
123
132
struct [[nodiscard]] StringOperationFilterInput
124
133
{
125
- explicit StringOperationFilterInput(std::optional<std::vector<StringOperationFilterInput>>&& and_Arg = std::optional<std::vector<StringOperationFilterInput>> {}, std::optional<std::vector<StringOperationFilterInput>>&& or_Arg = std::optional<std::vector<StringOperationFilterInput>> {}, std::optional<std::string>&& equalArg = std::optional<std::string> {}, std::optional<std::string>&& notEqualArg = std::optional<std::string> {}, std::optional<std::string>&& containsArg = std::optional<std::string> {}, std::optional<std::string>&& notContainsArg = std::optional<std::string> {}, std::optional<std::vector<std::string>>&& inArg = std::optional<std::vector<std::string>> {}, std::optional<std::vector<std::string>>&& notInArg = std::optional<std::vector<std::string>> {}, std::optional<std::string>&& startsWithArg = std::optional<std::string> {}, std::optional<std::string>&& notStartsWithArg = std::optional<std::string> {}, std::optional<std::string>&& endsWithArg = std::optional<std::string> {}, std::optional<std::string>&& notEndsWithArg = std::optional<std::string> {}) noexcept;
134
+ explicit StringOperationFilterInput (
135
+ std::optional<std::vector<StringOperationFilterInput>> and_Arg = std::optional<std::vector<StringOperationFilterInput>> {},
136
+ std::optional<std::vector<StringOperationFilterInput>> or_Arg = std::optional<std::vector<StringOperationFilterInput>> {},
137
+ std::optional<std::string> equalArg = std::optional<std::string> {},
138
+ std::optional<std::string> notEqualArg = std::optional<std::string> {},
139
+ std::optional<std::string> containsArg = std::optional<std::string> {},
140
+ std::optional<std::string> notContainsArg = std::optional<std::string> {},
141
+ std::optional<std::vector<std::string>> inArg = std::optional<std::vector<std::string>> {},
142
+ std::optional<std::vector<std::string>> notInArg = std::optional<std::vector<std::string>> {},
143
+ std::optional<std::string> startsWithArg = std::optional<std::string> {},
144
+ std::optional<std::string> notStartsWithArg = std::optional<std::string> {},
145
+ std::optional<std::string> endsWithArg = std::optional<std::string> {},
146
+ std::optional<std::string> notEndsWithArg = std::optional<std::string> {}) noexcept ;
126
147
StringOperationFilterInput (const StringOperationFilterInput& other);
127
148
StringOperationFilterInput (StringOperationFilterInput&& other) noexcept ;
128
149
@@ -145,7 +166,9 @@ struct [[nodiscard]] StringOperationFilterInput
145
166
146
167
struct [[nodiscard]] SecondNestedInput
147
168
{
148
- explicit SecondNestedInput (response::IdType&& idArg = response::IdType {}, ThirdNestedInput&& thirdArg = ThirdNestedInput {}) noexcept ;
169
+ explicit SecondNestedInput (
170
+ response::IdType idArg = response::IdType {},
171
+ ThirdNestedInput thirdArg = ThirdNestedInput {}) noexcept ;
149
172
SecondNestedInput (const SecondNestedInput& other);
150
173
SecondNestedInput (SecondNestedInput&& other) noexcept ;
151
174
@@ -158,7 +181,9 @@ struct [[nodiscard]] SecondNestedInput
158
181
159
182
struct [[nodiscard]] ForwardDeclaredInput
160
183
{
161
- explicit ForwardDeclaredInput (std::unique_ptr<IncludeNullableSelfInput>&& nullableSelfArg = std::unique_ptr<IncludeNullableSelfInput> {}, IncludeNonNullableListSelfInput&& listSelvesArg = IncludeNonNullableListSelfInput {}) noexcept ;
184
+ explicit ForwardDeclaredInput (
185
+ std::unique_ptr<IncludeNullableSelfInput> nullableSelfArg = std::unique_ptr<IncludeNullableSelfInput> {},
186
+ IncludeNonNullableListSelfInput listSelvesArg = IncludeNonNullableListSelfInput {}) noexcept ;
162
187
ForwardDeclaredInput (const ForwardDeclaredInput& other);
163
188
ForwardDeclaredInput (ForwardDeclaredInput&& other) noexcept ;
164
189
@@ -171,7 +196,10 @@ struct [[nodiscard]] ForwardDeclaredInput
171
196
172
197
struct [[nodiscard]] FirstNestedInput
173
198
{
174
- explicit FirstNestedInput (response::IdType&& idArg = response::IdType {}, SecondNestedInput&& secondArg = SecondNestedInput {}, ThirdNestedInput&& thirdArg = ThirdNestedInput {}) noexcept ;
199
+ explicit FirstNestedInput (
200
+ response::IdType idArg = response::IdType {},
201
+ SecondNestedInput secondArg = SecondNestedInput {},
202
+ ThirdNestedInput thirdArg = ThirdNestedInput {}) noexcept ;
175
203
FirstNestedInput (const FirstNestedInput& other);
176
204
FirstNestedInput (FirstNestedInput&& other) noexcept ;
177
205
0 commit comments