@@ -69,10 +69,10 @@ struct [[nodiscard("unnecessary construction")]] CompleteTaskInput
69
69
CompleteTaskInput& operator =(const CompleteTaskInput& other);
70
70
CompleteTaskInput& operator =(CompleteTaskInput&& other) noexcept ;
71
71
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;
76
76
};
77
77
78
78
struct SecondNestedInput ;
@@ -90,8 +90,8 @@ struct [[nodiscard("unnecessary construction")]] ThirdNestedInput
90
90
ThirdNestedInput& operator =(const ThirdNestedInput& other);
91
91
ThirdNestedInput& operator =(ThirdNestedInput&& other) noexcept ;
92
92
93
- response::IdType id {} ;
94
- std::unique_ptr<SecondNestedInput> second {} ;
93
+ response::IdType id;
94
+ std::unique_ptr<SecondNestedInput> second;
95
95
};
96
96
97
97
struct [[nodiscard(" unnecessary construction" )]] FourthNestedInput
@@ -106,7 +106,7 @@ struct [[nodiscard("unnecessary construction")]] FourthNestedInput
106
106
FourthNestedInput& operator =(const FourthNestedInput& other);
107
107
FourthNestedInput& operator =(FourthNestedInput&& other) noexcept ;
108
108
109
- response::IdType id {} ;
109
+ response::IdType id;
110
110
};
111
111
112
112
struct [[nodiscard(" unnecessary construction" )]] IncludeNullableSelfInput
@@ -121,7 +121,7 @@ struct [[nodiscard("unnecessary construction")]] IncludeNullableSelfInput
121
121
IncludeNullableSelfInput& operator =(const IncludeNullableSelfInput& other);
122
122
IncludeNullableSelfInput& operator =(IncludeNullableSelfInput&& other) noexcept ;
123
123
124
- std::unique_ptr<IncludeNullableSelfInput> self {} ;
124
+ std::unique_ptr<IncludeNullableSelfInput> self;
125
125
};
126
126
127
127
struct [[nodiscard(" unnecessary construction" )]] IncludeNonNullableListSelfInput
@@ -136,7 +136,7 @@ struct [[nodiscard("unnecessary construction")]] IncludeNonNullableListSelfInput
136
136
IncludeNonNullableListSelfInput& operator =(const IncludeNonNullableListSelfInput& other);
137
137
IncludeNonNullableListSelfInput& operator =(IncludeNonNullableListSelfInput&& other) noexcept ;
138
138
139
- std::vector<IncludeNonNullableListSelfInput> selves {} ;
139
+ std::vector<IncludeNonNullableListSelfInput> selves;
140
140
};
141
141
142
142
struct [[nodiscard(" unnecessary construction" )]] StringOperationFilterInput
@@ -162,18 +162,18 @@ struct [[nodiscard("unnecessary construction")]] StringOperationFilterInput
162
162
StringOperationFilterInput& operator =(const StringOperationFilterInput& other);
163
163
StringOperationFilterInput& operator =(StringOperationFilterInput&& other) noexcept ;
164
164
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;
177
177
};
178
178
179
179
struct [[nodiscard(" unnecessary construction" )]] SecondNestedInput
@@ -189,8 +189,8 @@ struct [[nodiscard("unnecessary construction")]] SecondNestedInput
189
189
SecondNestedInput& operator =(const SecondNestedInput& other);
190
190
SecondNestedInput& operator =(SecondNestedInput&& other) noexcept ;
191
191
192
- response::IdType id {} ;
193
- ThirdNestedInput third {} ;
192
+ response::IdType id;
193
+ ThirdNestedInput third;
194
194
};
195
195
196
196
struct [[nodiscard(" unnecessary construction" )]] ForwardDeclaredInput
@@ -206,8 +206,8 @@ struct [[nodiscard("unnecessary construction")]] ForwardDeclaredInput
206
206
ForwardDeclaredInput& operator =(const ForwardDeclaredInput& other);
207
207
ForwardDeclaredInput& operator =(ForwardDeclaredInput&& other) noexcept ;
208
208
209
- std::unique_ptr<IncludeNullableSelfInput> nullableSelf {} ;
210
- IncludeNonNullableListSelfInput listSelves {} ;
209
+ std::unique_ptr<IncludeNullableSelfInput> nullableSelf;
210
+ IncludeNonNullableListSelfInput listSelves;
211
211
};
212
212
213
213
struct [[nodiscard(" unnecessary construction" )]] FirstNestedInput
@@ -224,9 +224,9 @@ struct [[nodiscard("unnecessary construction")]] FirstNestedInput
224
224
FirstNestedInput& operator =(const FirstNestedInput& other);
225
225
FirstNestedInput& operator =(FirstNestedInput&& other) noexcept ;
226
226
227
- response::IdType id {} ;
228
- SecondNestedInput second {} ;
229
- ThirdNestedInput third {} ;
227
+ response::IdType id;
228
+ SecondNestedInput second;
229
+ ThirdNestedInput third;
230
230
};
231
231
232
232
namespace object {
0 commit comments