@@ -32,6 +32,7 @@ class GraphqlQuestionDetail(object):
32
32
'question_frontend_id' : 'str' ,
33
33
'bound_topic_id' : 'str' ,
34
34
'title' : 'str' ,
35
+ 'frequency' : 'float' ,
35
36
'content' : 'str' ,
36
37
'translated_title' : 'str' ,
37
38
'translated_content' : 'str' ,
@@ -66,6 +67,7 @@ class GraphqlQuestionDetail(object):
66
67
'question_frontend_id' : 'questionFrontendId' ,
67
68
'bound_topic_id' : 'boundTopicId' ,
68
69
'title' : 'title' ,
70
+ 'frequency' : 'frequency' ,
69
71
'content' : 'content' ,
70
72
'translated_title' : 'translatedTitle' ,
71
73
'translated_content' : 'translatedContent' ,
@@ -95,12 +97,13 @@ class GraphqlQuestionDetail(object):
95
97
'code_definition' : 'codeDefinition'
96
98
}
97
99
98
- def __init__ (self , question_id = None , question_frontend_id = None , bound_topic_id = None , title = None , content = None , translated_title = None , translated_content = None , is_paid_only = None , difficulty = None , likes = None , dislikes = None , is_liked = None , similar_questions = None , contributors = None , lang_to_valid_playground = None , topic_tags = None , company_tag_stats = None , code_snippets = None , stats = None , hints = None , solution = None , status = None , sample_test_case = None , judger_available = None , judge_type = None , mysql_schemas = None , enable_run_code = None , enable_test_mode = None , env_info = None , meta_data = None , code_definition = None ): # noqa: E501
100
+ def __init__ (self , question_id = None , question_frontend_id = None , bound_topic_id = None , title = None , frequency = None , content = None , translated_title = None , translated_content = None , is_paid_only = None , difficulty = None , likes = None , dislikes = None , is_liked = None , similar_questions = None , contributors = None , lang_to_valid_playground = None , topic_tags = None , company_tag_stats = None , code_snippets = None , stats = None , hints = None , solution = None , status = None , sample_test_case = None , judger_available = None , judge_type = None , mysql_schemas = None , enable_run_code = None , enable_test_mode = None , env_info = None , meta_data = None , code_definition = None ): # noqa: E501
99
101
"""GraphqlQuestionDetail - a model defined in Swagger""" # noqa: E501
100
102
self ._question_id = None
101
103
self ._question_frontend_id = None
102
104
self ._bound_topic_id = None
103
105
self ._title = None
106
+ self ._frequency = None
104
107
self ._content = None
105
108
self ._translated_title = None
106
109
self ._translated_content = None
@@ -137,6 +140,8 @@ def __init__(self, question_id=None, question_frontend_id=None, bound_topic_id=N
137
140
self .bound_topic_id = bound_topic_id
138
141
if title is not None :
139
142
self .title = title
143
+ if frequency is not None :
144
+ self .frequency = frequency
140
145
if content is not None :
141
146
self .content = content
142
147
if translated_title is not None :
@@ -276,6 +281,27 @@ def title(self, title):
276
281
277
282
self ._title = title
278
283
284
+ @property
285
+ def frequency (self ):
286
+ """Gets the frequency of this GraphqlQuestionDetail. # noqa: E501
287
+
288
+
289
+ :return: The frequency of this GraphqlQuestionDetail. # noqa: E501
290
+ :rtype: float
291
+ """
292
+ return self ._frequency
293
+
294
+ @frequency .setter
295
+ def frequency (self , frequency ):
296
+ """Sets the frequency of this GraphqlQuestionDetail.
297
+
298
+
299
+ :param frequency: The frequency of this GraphqlQuestionDetail. # noqa: E501
300
+ :type: float
301
+ """
302
+
303
+ self ._frequency = frequency
304
+
279
305
@property
280
306
def content (self ):
281
307
"""Gets the content of this GraphqlQuestionDetail. # noqa: E501
0 commit comments