@@ -210,7 +210,7 @@ def __init__(self, lang=None, lcid=None, title=None):
210210class EventCounts (Model ):
211211 """
212212 :param average_rating: Average rating on the day for extension
213- :type average_rating: int
213+ :type average_rating: float
214214 :param buy_count: Number of times the extension was bought in hosted scenario (applies only to VSTS extensions)
215215 :type buy_count: int
216216 :param connected_buy_count: Number of times the extension was bought in connected scenario (applies only to VSTS extensions)
@@ -230,7 +230,7 @@ class EventCounts(Model):
230230 """
231231
232232 _attribute_map = {
233- 'average_rating' : {'key' : 'averageRating' , 'type' : 'int ' },
233+ 'average_rating' : {'key' : 'averageRating' , 'type' : 'float ' },
234234 'buy_count' : {'key' : 'buyCount' , 'type' : 'int' },
235235 'connected_buy_count' : {'key' : 'connectedBuyCount' , 'type' : 'int' },
236236 'connected_install_count' : {'key' : 'connectedInstallCount' , 'type' : 'int' },
@@ -1715,15 +1715,15 @@ def __init__(self, has_more_reviews=None, reviews=None, total_review_count=None)
17151715class ReviewSummary (Model ):
17161716 """
17171717 :param average_rating: Average Rating
1718- :type average_rating: int
1718+ :type average_rating: float
17191719 :param rating_count: Count of total ratings
17201720 :type rating_count: long
17211721 :param rating_split: Split of count across rating
17221722 :type rating_split: list of :class:`RatingCountPerRating <azure.devops.v5_1.gallery.models.RatingCountPerRating>`
17231723 """
17241724
17251725 _attribute_map = {
1726- 'average_rating' : {'key' : 'averageRating' , 'type' : 'int ' },
1726+ 'average_rating' : {'key' : 'averageRating' , 'type' : 'float ' },
17271727 'rating_count' : {'key' : 'ratingCount' , 'type' : 'long' },
17281728 'rating_split' : {'key' : 'ratingSplit' , 'type' : '[RatingCountPerRating]' }
17291729 }
0 commit comments