/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Honeycode { namespace Model { class AWS_HONEYCODE_API InvokeScreenAutomationResult { public: InvokeScreenAutomationResult(); InvokeScreenAutomationResult(const Aws::AmazonWebServiceResult& result); InvokeScreenAutomationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The updated workbook cursor after performing the automation action.

*/ inline long long GetWorkbookCursor() const{ return m_workbookCursor; } /** *

The updated workbook cursor after performing the automation action.

*/ inline void SetWorkbookCursor(long long value) { m_workbookCursor = value; } /** *

The updated workbook cursor after performing the automation action.

*/ inline InvokeScreenAutomationResult& WithWorkbookCursor(long long value) { SetWorkbookCursor(value); return *this;} private: long long m_workbookCursor; }; } // namespace Model } // namespace Honeycode } // namespace Aws