/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure containing information about an undetected signature on a page
* where it was expected but not found.See Also:
AWS
* API Reference
The page where a signature was expected but not found.
*/ inline int GetPage() const{ return m_page; } /** *The page where a signature was expected but not found.
*/ inline bool PageHasBeenSet() const { return m_pageHasBeenSet; } /** *The page where a signature was expected but not found.
*/ inline void SetPage(int value) { m_pageHasBeenSet = true; m_page = value; } /** *The page where a signature was expected but not found.
*/ inline UndetectedSignature& WithPage(int value) { SetPage(value); return *this;} private: int m_page; bool m_pageHasBeenSet = false; }; } // namespace Model } // namespace Textract } // namespace Aws