/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about the pages of a document, defined by logical
* boundary.See Also:
AWS
* API Reference
The index for a given document in a DocumentGroup of a specific Type.
*/ inline int GetIndex() const{ return m_index; } /** *The index for a given document in a DocumentGroup of a specific Type.
*/ inline bool IndexHasBeenSet() const { return m_indexHasBeenSet; } /** *The index for a given document in a DocumentGroup of a specific Type.
*/ inline void SetIndex(int value) { m_indexHasBeenSet = true; m_index = value; } /** *The index for a given document in a DocumentGroup of a specific Type.
*/ inline SplitDocument& WithIndex(int value) { SetIndex(value); return *this;} /** *An array of page numbers for a for a given document, ordered by logical * boundary.
*/ inline const Aws::VectorAn array of page numbers for a for a given document, ordered by logical * boundary.
*/ inline bool PagesHasBeenSet() const { return m_pagesHasBeenSet; } /** *An array of page numbers for a for a given document, ordered by logical * boundary.
*/ inline void SetPages(const Aws::VectorAn array of page numbers for a for a given document, ordered by logical * boundary.
*/ inline void SetPages(Aws::VectorAn array of page numbers for a for a given document, ordered by logical * boundary.
*/ inline SplitDocument& WithPages(const Aws::VectorAn array of page numbers for a for a given document, ordered by logical * boundary.
*/ inline SplitDocument& WithPages(Aws::VectorAn array of page numbers for a for a given document, ordered by logical * boundary.
*/ inline SplitDocument& AddPages(int value) { m_pagesHasBeenSet = true; m_pages.push_back(value); return *this; } private: int m_index; bool m_indexHasBeenSet = false; Aws::Vector