/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the document, discovered during text
* extraction.See Also:
AWS
* API Reference
Number of pages in the document.
*/ inline int GetPages() const{ return m_pages; } /** *Number of pages in the document.
*/ inline bool PagesHasBeenSet() const { return m_pagesHasBeenSet; } /** *Number of pages in the document.
*/ inline void SetPages(int value) { m_pagesHasBeenSet = true; m_pages = value; } /** *Number of pages in the document.
*/ inline DocumentMetadata& WithPages(int value) { SetPages(value); return *this;} /** *List of pages in the document, with the number of characters extracted from * each page.
*/ inline const Aws::VectorList of pages in the document, with the number of characters extracted from * each page.
*/ inline bool ExtractedCharactersHasBeenSet() const { return m_extractedCharactersHasBeenSet; } /** *List of pages in the document, with the number of characters extracted from * each page.
*/ inline void SetExtractedCharacters(const Aws::VectorList of pages in the document, with the number of characters extracted from * each page.
*/ inline void SetExtractedCharacters(Aws::VectorList of pages in the document, with the number of characters extracted from * each page.
*/ inline DocumentMetadata& WithExtractedCharacters(const Aws::VectorList of pages in the document, with the number of characters extracted from * each page.
*/ inline DocumentMetadata& WithExtractedCharacters(Aws::VectorList of pages in the document, with the number of characters extracted from * each page.
*/ inline DocumentMetadata& AddExtractedCharacters(const ExtractedCharactersListItem& value) { m_extractedCharactersHasBeenSet = true; m_extractedCharacters.push_back(value); return *this; } /** *List of pages in the document, with the number of characters extracted from * each page.
*/ inline DocumentMetadata& AddExtractedCharacters(ExtractedCharactersListItem&& value) { m_extractedCharactersHasBeenSet = true; m_extractedCharacters.push_back(std::move(value)); return *this; } private: int m_pages; bool m_pagesHasBeenSet = false; Aws::Vector