#pragma once /* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. * * This file is generated */ #include #include #include #include namespace Aws { namespace Iotshadow { /** * Response payload to a DeleteShadow request. * */ class AWS_IOTSHADOW_API DeleteShadowResponse final { public: DeleteShadowResponse() = default; DeleteShadowResponse(const Crt::JsonView &doc); DeleteShadowResponse &operator=(const Crt::JsonView &doc); void SerializeToObject(Crt::JsonObject &doc) const; /** * The current version of the document for the device's shadow. * */ Aws::Crt::Optional Version; /** * A client token used to correlate requests and responses. * */ Aws::Crt::Optional ClientToken; /** * The time the response was generated by AWS IoT. * */ Aws::Crt::Optional Timestamp; private: static void LoadFromObject(DeleteShadowResponse &obj, const Crt::JsonView &doc); }; } // namespace Iotshadow } // namespace Aws