1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/chime/Chime_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSVector.h>
9 #include <aws/core/utils/memory/stl/AWSString.h>
10 #include <aws/chime/model/Attendee.h>
11 #include <utility>
12 
13 namespace Aws
14 {
15 template<typename RESULT_TYPE>
16 class AmazonWebServiceResult;
17 
18 namespace Utils
19 {
20 namespace Json
21 {
22   class JsonValue;
23 } // namespace Json
24 } // namespace Utils
25 namespace Chime
26 {
27 namespace Model
28 {
29   class AWS_CHIME_API ListAttendeesResult
30   {
31   public:
32     ListAttendeesResult();
33     ListAttendeesResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
34     ListAttendeesResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
35 
36 
37     /**
38      * <p>The Amazon Chime SDK attendee information.</p>
39      */
GetAttendees()40     inline const Aws::Vector<Attendee>& GetAttendees() const{ return m_attendees; }
41 
42     /**
43      * <p>The Amazon Chime SDK attendee information.</p>
44      */
SetAttendees(const Aws::Vector<Attendee> & value)45     inline void SetAttendees(const Aws::Vector<Attendee>& value) { m_attendees = value; }
46 
47     /**
48      * <p>The Amazon Chime SDK attendee information.</p>
49      */
SetAttendees(Aws::Vector<Attendee> && value)50     inline void SetAttendees(Aws::Vector<Attendee>&& value) { m_attendees = std::move(value); }
51 
52     /**
53      * <p>The Amazon Chime SDK attendee information.</p>
54      */
WithAttendees(const Aws::Vector<Attendee> & value)55     inline ListAttendeesResult& WithAttendees(const Aws::Vector<Attendee>& value) { SetAttendees(value); return *this;}
56 
57     /**
58      * <p>The Amazon Chime SDK attendee information.</p>
59      */
WithAttendees(Aws::Vector<Attendee> && value)60     inline ListAttendeesResult& WithAttendees(Aws::Vector<Attendee>&& value) { SetAttendees(std::move(value)); return *this;}
61 
62     /**
63      * <p>The Amazon Chime SDK attendee information.</p>
64      */
AddAttendees(const Attendee & value)65     inline ListAttendeesResult& AddAttendees(const Attendee& value) { m_attendees.push_back(value); return *this; }
66 
67     /**
68      * <p>The Amazon Chime SDK attendee information.</p>
69      */
AddAttendees(Attendee && value)70     inline ListAttendeesResult& AddAttendees(Attendee&& value) { m_attendees.push_back(std::move(value)); return *this; }
71 
72 
73     /**
74      * <p>The token to use to retrieve the next page of results.</p>
75      */
GetNextToken()76     inline const Aws::String& GetNextToken() const{ return m_nextToken; }
77 
78     /**
79      * <p>The token to use to retrieve the next page of results.</p>
80      */
SetNextToken(const Aws::String & value)81     inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
82 
83     /**
84      * <p>The token to use to retrieve the next page of results.</p>
85      */
SetNextToken(Aws::String && value)86     inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
87 
88     /**
89      * <p>The token to use to retrieve the next page of results.</p>
90      */
SetNextToken(const char * value)91     inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
92 
93     /**
94      * <p>The token to use to retrieve the next page of results.</p>
95      */
WithNextToken(const Aws::String & value)96     inline ListAttendeesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
97 
98     /**
99      * <p>The token to use to retrieve the next page of results.</p>
100      */
WithNextToken(Aws::String && value)101     inline ListAttendeesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
102 
103     /**
104      * <p>The token to use to retrieve the next page of results.</p>
105      */
WithNextToken(const char * value)106     inline ListAttendeesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
107 
108   private:
109 
110     Aws::Vector<Attendee> m_attendees;
111 
112     Aws::String m_nextToken;
113   };
114 
115 } // namespace Model
116 } // namespace Chime
117 } // namespace Aws
118