@@ -56,7 +56,11 @@ enum class [[nodiscard]] TaskState
5656
5757struct [[nodiscard]] CompleteTaskInput
5858{
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 ;
6064 CompleteTaskInput (const CompleteTaskInput& other);
6165 CompleteTaskInput (CompleteTaskInput&& other) noexcept ;
6266
@@ -73,7 +77,9 @@ struct SecondNestedInput;
7377
7478struct [[nodiscard]] ThirdNestedInput
7579{
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 ;
7783 ThirdNestedInput (const ThirdNestedInput& other);
7884 ThirdNestedInput (ThirdNestedInput&& other) noexcept ;
7985
@@ -86,7 +92,8 @@ struct [[nodiscard]] ThirdNestedInput
8692
8793struct [[nodiscard]] FourthNestedInput
8894{
89- explicit FourthNestedInput (response::IdType&& idArg = response::IdType {}) noexcept ;
95+ explicit FourthNestedInput (
96+ response::IdType idArg = response::IdType {}) noexcept ;
9097 FourthNestedInput (const FourthNestedInput& other);
9198 FourthNestedInput (FourthNestedInput&& other) noexcept ;
9299
@@ -98,7 +105,8 @@ struct [[nodiscard]] FourthNestedInput
98105
99106struct [[nodiscard]] IncludeNullableSelfInput
100107{
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 ;
102110 IncludeNullableSelfInput (const IncludeNullableSelfInput& other);
103111 IncludeNullableSelfInput (IncludeNullableSelfInput&& other) noexcept ;
104112
@@ -110,7 +118,8 @@ struct [[nodiscard]] IncludeNullableSelfInput
110118
111119struct [[nodiscard]] IncludeNonNullableListSelfInput
112120{
113- explicit IncludeNonNullableListSelfInput (std::vector<IncludeNonNullableListSelfInput>&& selvesArg = std::vector<IncludeNonNullableListSelfInput> {}) noexcept ;
121+ explicit IncludeNonNullableListSelfInput (
122+ std::vector<IncludeNonNullableListSelfInput> selvesArg = std::vector<IncludeNonNullableListSelfInput> {}) noexcept ;
114123 IncludeNonNullableListSelfInput (const IncludeNonNullableListSelfInput& other);
115124 IncludeNonNullableListSelfInput (IncludeNonNullableListSelfInput&& other) noexcept ;
116125
@@ -122,7 +131,19 @@ struct [[nodiscard]] IncludeNonNullableListSelfInput
122131
123132struct [[nodiscard]] StringOperationFilterInput
124133{
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 ;
126147 StringOperationFilterInput (const StringOperationFilterInput& other);
127148 StringOperationFilterInput (StringOperationFilterInput&& other) noexcept ;
128149
@@ -145,7 +166,9 @@ struct [[nodiscard]] StringOperationFilterInput
145166
146167struct [[nodiscard]] SecondNestedInput
147168{
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 ;
149172 SecondNestedInput (const SecondNestedInput& other);
150173 SecondNestedInput (SecondNestedInput&& other) noexcept ;
151174
@@ -158,7 +181,9 @@ struct [[nodiscard]] SecondNestedInput
158181
159182struct [[nodiscard]] ForwardDeclaredInput
160183{
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 ;
162187 ForwardDeclaredInput (const ForwardDeclaredInput& other);
163188 ForwardDeclaredInput (ForwardDeclaredInput&& other) noexcept ;
164189
@@ -171,7 +196,10 @@ struct [[nodiscard]] ForwardDeclaredInput
171196
172197struct [[nodiscard]] FirstNestedInput
173198{
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 ;
175203 FirstNestedInput (const FirstNestedInput& other);
176204 FirstNestedInput (FirstNestedInput&& other) noexcept ;
177205
0 commit comments