@@ -27,30 +27,26 @@ class CollectionListResponse(object):
2727 'status' : 'object' ,
2828 'data' : 'object' ,
2929 'fetched_count' : 'object' ,
30- 'total_count' : 'object' ,
3130 'has_more' : 'object'
3231 }
3332
3433 attribute_map = {
3534 'status' : 'status' ,
3635 'data' : 'data' ,
3736 'fetched_count' : 'fetched_count' ,
38- 'total_count' : 'total_count' ,
3937 'has_more' : 'has_more'
4038 }
4139
42- def __init__ (self , status = None , data = None , fetched_count = None , total_count = None , has_more = None ): # noqa: E501
40+ def __init__ (self , status = None , data = None , fetched_count = None , has_more = None ): # noqa: E501
4341 """CollectionListResponse - a model defined in Swagger""" # noqa: E501
4442 self ._status = None
4543 self ._data = None
4644 self ._fetched_count = None
47- self ._total_count = None
4845 self ._has_more = None
4946 self .discriminator = None
5047 self .status = status
5148 self .data = data
5249 self .fetched_count = fetched_count
53- self .total_count = total_count
5450 self .has_more = has_more
5551
5652 @property
@@ -128,31 +124,6 @@ def fetched_count(self, fetched_count):
128124
129125 self ._fetched_count = fetched_count
130126
131- @property
132- def total_count (self ):
133- """Gets the total_count of this CollectionListResponse. # noqa: E501
134-
135- The total number of collections in the project. # noqa: E501
136-
137- :return: The total_count of this CollectionListResponse. # noqa: E501
138- :rtype: object
139- """
140- return self ._total_count
141-
142- @total_count .setter
143- def total_count (self , total_count ):
144- """Sets the total_count of this CollectionListResponse.
145-
146- The total number of collections in the project. # noqa: E501
147-
148- :param total_count: The total_count of this CollectionListResponse. # noqa: E501
149- :type: object
150- """
151- if total_count is None :
152- raise ValueError ("Invalid value for `total_count`, must not be `None`" ) # noqa: E501
153-
154- self ._total_count = total_count
155-
156127 @property
157128 def has_more (self ):
158129 """Gets the has_more of this CollectionListResponse. # noqa: E501
0 commit comments