@@ -42,11 +42,11 @@ def __init__(self):
4242 'page_size' : 'int' ,
4343 'page_number' : 'int' ,
4444 'total' : 'int' ,
45- 'self_uri' : 'str' ,
4645 'first_uri' : 'str' ,
46+ 'self_uri' : 'str' ,
47+ 'next_uri' : 'str' ,
4748 'previous_uri' : 'str' ,
4849 'last_uri' : 'str' ,
49- 'next_uri' : 'str' ,
5050 'page_count' : 'int'
5151 }
5252
@@ -55,23 +55,23 @@ def __init__(self):
5555 'page_size' : 'pageSize' ,
5656 'page_number' : 'pageNumber' ,
5757 'total' : 'total' ,
58- 'self_uri' : 'selfUri' ,
5958 'first_uri' : 'firstUri' ,
59+ 'self_uri' : 'selfUri' ,
60+ 'next_uri' : 'nextUri' ,
6061 'previous_uri' : 'previousUri' ,
6162 'last_uri' : 'lastUri' ,
62- 'next_uri' : 'nextUri' ,
6363 'page_count' : 'pageCount'
6464 }
6565
6666 self ._entities = None
6767 self ._page_size = None
6868 self ._page_number = None
6969 self ._total = None
70- self ._self_uri = None
7170 self ._first_uri = None
71+ self ._self_uri = None
72+ self ._next_uri = None
7273 self ._previous_uri = None
7374 self ._last_uri = None
74- self ._next_uri = None
7575 self ._page_count = None
7676
7777 @property
@@ -166,6 +166,29 @@ def total(self, total):
166166
167167 self ._total = total
168168
169+ @property
170+ def first_uri (self ):
171+ """
172+ Gets the first_uri of this AgentActivityEntityListing.
173+
174+
175+ :return: The first_uri of this AgentActivityEntityListing.
176+ :rtype: str
177+ """
178+ return self ._first_uri
179+
180+ @first_uri .setter
181+ def first_uri (self , first_uri ):
182+ """
183+ Sets the first_uri of this AgentActivityEntityListing.
184+
185+
186+ :param first_uri: The first_uri of this AgentActivityEntityListing.
187+ :type: str
188+ """
189+
190+ self ._first_uri = first_uri
191+
169192 @property
170193 def self_uri (self ):
171194 """
@@ -190,27 +213,27 @@ def self_uri(self, self_uri):
190213 self ._self_uri = self_uri
191214
192215 @property
193- def first_uri (self ):
216+ def next_uri (self ):
194217 """
195- Gets the first_uri of this AgentActivityEntityListing.
218+ Gets the next_uri of this AgentActivityEntityListing.
196219
197220
198- :return: The first_uri of this AgentActivityEntityListing.
221+ :return: The next_uri of this AgentActivityEntityListing.
199222 :rtype: str
200223 """
201- return self ._first_uri
224+ return self ._next_uri
202225
203- @first_uri .setter
204- def first_uri (self , first_uri ):
226+ @next_uri .setter
227+ def next_uri (self , next_uri ):
205228 """
206- Sets the first_uri of this AgentActivityEntityListing.
229+ Sets the next_uri of this AgentActivityEntityListing.
207230
208231
209- :param first_uri : The first_uri of this AgentActivityEntityListing.
232+ :param next_uri : The next_uri of this AgentActivityEntityListing.
210233 :type: str
211234 """
212235
213- self ._first_uri = first_uri
236+ self ._next_uri = next_uri
214237
215238 @property
216239 def previous_uri (self ):
@@ -258,29 +281,6 @@ def last_uri(self, last_uri):
258281
259282 self ._last_uri = last_uri
260283
261- @property
262- def next_uri (self ):
263- """
264- Gets the next_uri of this AgentActivityEntityListing.
265-
266-
267- :return: The next_uri of this AgentActivityEntityListing.
268- :rtype: str
269- """
270- return self ._next_uri
271-
272- @next_uri .setter
273- def next_uri (self , next_uri ):
274- """
275- Sets the next_uri of this AgentActivityEntityListing.
276-
277-
278- :param next_uri: The next_uri of this AgentActivityEntityListing.
279- :type: str
280- """
281-
282- self ._next_uri = next_uri
283-
284284 @property
285285 def page_count (self ):
286286 """
0 commit comments