@@ -35,6 +35,7 @@ class GraphqlQuestionDetail(object):
35
35
"bound_topic_id" : "str" ,
36
36
"title" : "str" ,
37
37
"title_slug" : "str" ,
38
+ "category_title" : "str" ,
38
39
"frequency" : "float" ,
39
40
"freq_bar" : "float" ,
40
41
"content" : "str" ,
@@ -76,6 +77,7 @@ class GraphqlQuestionDetail(object):
76
77
"bound_topic_id" : "boundTopicId" ,
77
78
"title" : "title" ,
78
79
"title_slug" : "titleSlug" ,
80
+ "category_title" : "categoryTitle" ,
79
81
"frequency" : "frequency" ,
80
82
"freq_bar" : "freqBar" ,
81
83
"content" : "content" ,
@@ -118,6 +120,7 @@ def __init__(
118
120
bound_topic_id = None ,
119
121
title = None ,
120
122
title_slug = None ,
123
+ category_title = None ,
121
124
frequency = None ,
122
125
freq_bar = None ,
123
126
content = None ,
@@ -158,6 +161,7 @@ def __init__(
158
161
self ._bound_topic_id = None
159
162
self ._title = None
160
163
self ._title_slug = None
164
+ self ._category_title = None
161
165
self ._frequency = None
162
166
self ._freq_bar = None
163
167
self ._content = None
@@ -202,6 +206,8 @@ def __init__(
202
206
self .title = title
203
207
if title_slug is not None :
204
208
self .title_slug = title_slug
209
+ if category_title is not None :
210
+ self .category_title = category_title
205
211
if frequency is not None :
206
212
self .frequency = frequency
207
213
if freq_bar is not None :
@@ -374,6 +380,27 @@ def title_slug(self, title_slug):
374
380
375
381
self ._title_slug = title_slug
376
382
383
+ @property
384
+ def category_title (self ):
385
+ """Gets the category_title of this GraphqlQuestionDetail. # noqa: E501
386
+
387
+
388
+ :return: The category_title of this GraphqlQuestionDetail. # noqa: E501
389
+ :rtype: str
390
+ """
391
+ return self ._category_title
392
+
393
+ @category_title .setter
394
+ def category_title (self , category_title ):
395
+ """Sets the category_title of this GraphqlQuestionDetail.
396
+
397
+
398
+ :param category_title: The category_title of this GraphqlQuestionDetail. # noqa: E501
399
+ :type: str
400
+ """
401
+
402
+ self ._category_title = category_title
403
+
377
404
@property
378
405
def frequency (self ):
379
406
"""Gets the frequency of this GraphqlQuestionDetail. # noqa: E501
0 commit comments