You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (null !== $v = $this->ReturnConsumedCapacity) {
132
+
if (null !== $v = $this->returnConsumedCapacity) {
133
133
if (!ReturnConsumedCapacity::exists($v)) {
134
134
thrownewInvalidArgument(sprintf('Invalid parameter "ReturnConsumedCapacity" for "%s". The value "%s" is not a valid "ReturnConsumedCapacity".', __CLASS__, $v));
thrownewInvalidArgument(sprintf('Missing parameter "RequestItems" for "%s". The value cannot be null.', __CLASS__));
152
152
}
153
153
@@ -164,13 +164,13 @@ private function requestBody(): array
164
164
}
165
165
}
166
166
}
167
-
if (null !== $v = $this->ReturnConsumedCapacity) {
167
+
if (null !== $v = $this->returnConsumedCapacity) {
168
168
if (!ReturnConsumedCapacity::exists($v)) {
169
169
thrownewInvalidArgument(sprintf('Invalid parameter "ReturnConsumedCapacity" for "%s". The value "%s" is not a valid "ReturnConsumedCapacity".', __CLASS__, $v));
170
170
}
171
171
$payload['ReturnConsumedCapacity'] = $v;
172
172
}
173
-
if (null !== $v = $this->ReturnItemCollectionMetrics) {
173
+
if (null !== $v = $this->returnItemCollectionMetrics) {
174
174
if (!ReturnItemCollectionMetrics::exists($v)) {
175
175
thrownewInvalidArgument(sprintf('Invalid parameter "ReturnItemCollectionMetrics" for "%s". The value "%s" is not a valid "ReturnItemCollectionMetrics".', __CLASS__, $v));
0 commit comments