/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Indicates the completion progress for a batch job.See Also:
* AWS
* API Reference
Shows the completed percentage of enrollment or registration requests listed * in the input file.
*/ inline int GetPercentComplete() const{ return m_percentComplete; } /** *Shows the completed percentage of enrollment or registration requests listed * in the input file.
*/ inline bool PercentCompleteHasBeenSet() const { return m_percentCompleteHasBeenSet; } /** *Shows the completed percentage of enrollment or registration requests listed * in the input file.
*/ inline void SetPercentComplete(int value) { m_percentCompleteHasBeenSet = true; m_percentComplete = value; } /** *Shows the completed percentage of enrollment or registration requests listed * in the input file.
*/ inline JobProgress& WithPercentComplete(int value) { SetPercentComplete(value); return *this;} private: int m_percentComplete; bool m_percentCompleteHasBeenSet = false; }; } // namespace Model } // namespace VoiceID } // namespace Aws