/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Shows the group that a certain key belongs to. This helps differentiate
* between names and addresses for different organizations, that can be hard to
* determine via JSON response.See Also:
AWS
* API Reference
Informs you on whether the expense group is a name or an address.
*/ inline const Aws::VectorInforms you on whether the expense group is a name or an address.
*/ inline bool TypesHasBeenSet() const { return m_typesHasBeenSet; } /** *Informs you on whether the expense group is a name or an address.
*/ inline void SetTypes(const Aws::VectorInforms you on whether the expense group is a name or an address.
*/ inline void SetTypes(Aws::VectorInforms you on whether the expense group is a name or an address.
*/ inline ExpenseGroupProperty& WithTypes(const Aws::VectorInforms you on whether the expense group is a name or an address.
*/ inline ExpenseGroupProperty& WithTypes(Aws::VectorInforms you on whether the expense group is a name or an address.
*/ inline ExpenseGroupProperty& AddTypes(const Aws::String& value) { m_typesHasBeenSet = true; m_types.push_back(value); return *this; } /** *Informs you on whether the expense group is a name or an address.
*/ inline ExpenseGroupProperty& AddTypes(Aws::String&& value) { m_typesHasBeenSet = true; m_types.push_back(std::move(value)); return *this; } /** *Informs you on whether the expense group is a name or an address.
*/ inline ExpenseGroupProperty& AddTypes(const char* value) { m_typesHasBeenSet = true; m_types.push_back(value); return *this; } /** *Provides a group Id number, which will be the same for each in the group.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *Provides a group Id number, which will be the same for each in the group.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *Provides a group Id number, which will be the same for each in the group.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *Provides a group Id number, which will be the same for each in the group.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *Provides a group Id number, which will be the same for each in the group.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *Provides a group Id number, which will be the same for each in the group.
*/ inline ExpenseGroupProperty& WithId(const Aws::String& value) { SetId(value); return *this;} /** *Provides a group Id number, which will be the same for each in the group.
*/ inline ExpenseGroupProperty& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *Provides a group Id number, which will be the same for each in the group.
*/ inline ExpenseGroupProperty& WithId(const char* value) { SetId(value); return *this;} private: Aws::Vector