@@ -69,10 +69,10 @@ struct [[nodiscard("unnecessary construction")]] CompleteTaskInput
6969 CompleteTaskInput& operator =(const CompleteTaskInput& other);
7070 CompleteTaskInput& operator =(CompleteTaskInput&& other) noexcept ;
7171
72- response::IdType id {} ;
73- std::optional<TaskState> testTaskState {} ;
74- std::optional<bool > isComplete {} ;
75- std::optional<std::string> clientMutationId {} ;
72+ response::IdType id;
73+ std::optional<TaskState> testTaskState;
74+ std::optional<bool > isComplete;
75+ std::optional<std::string> clientMutationId;
7676};
7777
7878struct SecondNestedInput ;
@@ -90,8 +90,8 @@ struct [[nodiscard("unnecessary construction")]] ThirdNestedInput
9090 ThirdNestedInput& operator =(const ThirdNestedInput& other);
9191 ThirdNestedInput& operator =(ThirdNestedInput&& other) noexcept ;
9292
93- response::IdType id {} ;
94- std::unique_ptr<SecondNestedInput> second {} ;
93+ response::IdType id;
94+ std::unique_ptr<SecondNestedInput> second;
9595};
9696
9797struct [[nodiscard(" unnecessary construction" )]] FourthNestedInput
@@ -106,7 +106,7 @@ struct [[nodiscard("unnecessary construction")]] FourthNestedInput
106106 FourthNestedInput& operator =(const FourthNestedInput& other);
107107 FourthNestedInput& operator =(FourthNestedInput&& other) noexcept ;
108108
109- response::IdType id {} ;
109+ response::IdType id;
110110};
111111
112112struct [[nodiscard(" unnecessary construction" )]] IncludeNullableSelfInput
@@ -121,7 +121,7 @@ struct [[nodiscard("unnecessary construction")]] IncludeNullableSelfInput
121121 IncludeNullableSelfInput& operator =(const IncludeNullableSelfInput& other);
122122 IncludeNullableSelfInput& operator =(IncludeNullableSelfInput&& other) noexcept ;
123123
124- std::unique_ptr<IncludeNullableSelfInput> self {} ;
124+ std::unique_ptr<IncludeNullableSelfInput> self;
125125};
126126
127127struct [[nodiscard(" unnecessary construction" )]] IncludeNonNullableListSelfInput
@@ -136,7 +136,7 @@ struct [[nodiscard("unnecessary construction")]] IncludeNonNullableListSelfInput
136136 IncludeNonNullableListSelfInput& operator =(const IncludeNonNullableListSelfInput& other);
137137 IncludeNonNullableListSelfInput& operator =(IncludeNonNullableListSelfInput&& other) noexcept ;
138138
139- std::vector<IncludeNonNullableListSelfInput> selves {} ;
139+ std::vector<IncludeNonNullableListSelfInput> selves;
140140};
141141
142142struct [[nodiscard(" unnecessary construction" )]] StringOperationFilterInput
@@ -162,18 +162,18 @@ struct [[nodiscard("unnecessary construction")]] StringOperationFilterInput
162162 StringOperationFilterInput& operator =(const StringOperationFilterInput& other);
163163 StringOperationFilterInput& operator =(StringOperationFilterInput&& other) noexcept ;
164164
165- std::optional<std::vector<StringOperationFilterInput>> and_ {} ;
166- std::optional<std::vector<StringOperationFilterInput>> or_ {} ;
167- std::optional<std::string> equal {} ;
168- std::optional<std::string> notEqual {} ;
169- std::optional<std::string> contains {} ;
170- std::optional<std::string> notContains {} ;
171- std::optional<std::vector<std::string>> in {} ;
172- std::optional<std::vector<std::string>> notIn {} ;
173- std::optional<std::string> startsWith {} ;
174- std::optional<std::string> notStartsWith {} ;
175- std::optional<std::string> endsWith {} ;
176- std::optional<std::string> notEndsWith {} ;
165+ std::optional<std::vector<StringOperationFilterInput>> and_;
166+ std::optional<std::vector<StringOperationFilterInput>> or_;
167+ std::optional<std::string> equal;
168+ std::optional<std::string> notEqual;
169+ std::optional<std::string> contains;
170+ std::optional<std::string> notContains;
171+ std::optional<std::vector<std::string>> in;
172+ std::optional<std::vector<std::string>> notIn;
173+ std::optional<std::string> startsWith;
174+ std::optional<std::string> notStartsWith;
175+ std::optional<std::string> endsWith;
176+ std::optional<std::string> notEndsWith;
177177};
178178
179179struct [[nodiscard(" unnecessary construction" )]] SecondNestedInput
@@ -189,8 +189,8 @@ struct [[nodiscard("unnecessary construction")]] SecondNestedInput
189189 SecondNestedInput& operator =(const SecondNestedInput& other);
190190 SecondNestedInput& operator =(SecondNestedInput&& other) noexcept ;
191191
192- response::IdType id {} ;
193- ThirdNestedInput third {} ;
192+ response::IdType id;
193+ ThirdNestedInput third;
194194};
195195
196196struct [[nodiscard(" unnecessary construction" )]] ForwardDeclaredInput
@@ -206,8 +206,8 @@ struct [[nodiscard("unnecessary construction")]] ForwardDeclaredInput
206206 ForwardDeclaredInput& operator =(const ForwardDeclaredInput& other);
207207 ForwardDeclaredInput& operator =(ForwardDeclaredInput&& other) noexcept ;
208208
209- std::unique_ptr<IncludeNullableSelfInput> nullableSelf {} ;
210- IncludeNonNullableListSelfInput listSelves {} ;
209+ std::unique_ptr<IncludeNullableSelfInput> nullableSelf;
210+ IncludeNonNullableListSelfInput listSelves;
211211};
212212
213213struct [[nodiscard(" unnecessary construction" )]] FirstNestedInput
@@ -224,9 +224,9 @@ struct [[nodiscard("unnecessary construction")]] FirstNestedInput
224224 FirstNestedInput& operator =(const FirstNestedInput& other);
225225 FirstNestedInput& operator =(FirstNestedInput&& other) noexcept ;
226226
227- response::IdType id {} ;
228- SecondNestedInput second {} ;
229- ThirdNestedInput third {} ;
227+ response::IdType id;
228+ SecondNestedInput second;
229+ ThirdNestedInput third;
230230};
231231
232232namespace object {
0 commit comments