/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes how the archive is serialized.See Also:
AWS
* API Reference
Describes the serialization of a CSV-encoded object.
*/ inline const CSVInput& GetCsv() const{ return m_csv; } /** *Describes the serialization of a CSV-encoded object.
*/ inline bool CsvHasBeenSet() const { return m_csvHasBeenSet; } /** *Describes the serialization of a CSV-encoded object.
*/ inline void SetCsv(const CSVInput& value) { m_csvHasBeenSet = true; m_csv = value; } /** *Describes the serialization of a CSV-encoded object.
*/ inline void SetCsv(CSVInput&& value) { m_csvHasBeenSet = true; m_csv = std::move(value); } /** *Describes the serialization of a CSV-encoded object.
*/ inline InputSerialization& WithCsv(const CSVInput& value) { SetCsv(value); return *this;} /** *Describes the serialization of a CSV-encoded object.
*/ inline InputSerialization& WithCsv(CSVInput&& value) { SetCsv(std::move(value)); return *this;} private: CSVInput m_csv; bool m_csvHasBeenSet = false; }; } // namespace Model } // namespace Glacier } // namespace Aws