You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:param type: The type of this DatasetColumn. # noqa: E501
139
-
:type: str
140
-
"""
146
+
:param type: The type of this DatasetColumn. # noqa: E501
147
+
:type: str
148
+
"""
141
149
142
150
self._type=type
143
151
144
152
@property
145
153
deforiginal_type(self):
146
-
"""Gets the original_type of this DatasetColumn. # noqa: E501
154
+
"""Gets the original_type of this DatasetColumn. # noqa: E501.
147
155
148
-
Used to store the original type of the column, which will be converted to Kaggle's types. For example, an `originalType` of `\"integer\"` would convert to a `type` of `\"numeric\"` # noqa: E501
156
+
Used to store the original type of the column, which will be converted to Kaggle's types. For example, an `originalType` of `\"integer\"` would convert to a `type` of `\"numeric\"` # noqa: E501
149
157
150
-
:return: The original_type of this DatasetColumn. # noqa: E501
151
-
:rtype: str
152
-
"""
158
+
:return: The original_type of this DatasetColumn. # noqa: E501
159
+
:rtype: str
160
+
"""
153
161
returnself._original_type
154
162
155
163
@original_type.setter
156
164
deforiginal_type(self, original_type):
157
165
"""Sets the original_type of this DatasetColumn.
158
166
159
-
Used to store the original type of the column, which will be converted to Kaggle's types. For example, an `originalType` of `\"integer\"` would convert to a `type` of `\"numeric\"` # noqa: E501
167
+
Used to store the original type of the column, which will be converted to Kaggle's types. For example, an `originalType` of `\"integer\"` would convert to a `type` of `\"numeric\"` # noqa: E501
160
168
161
-
:param original_type: The original_type of this DatasetColumn. # noqa: E501
162
-
:type: str
163
-
"""
169
+
:param original_type: The original_type of this DatasetColumn. # noqa: E501
170
+
:type: str
171
+
"""
164
172
165
173
self._original_type=original_type
166
174
167
175
@property
168
176
defdescription(self):
169
-
"""Gets the description of this DatasetColumn. # noqa: E501
177
+
"""Gets the description of this DatasetColumn. # noqa: E501.
170
178
171
-
The description of the column # noqa: E501
179
+
The description of the column # noqa: E501
172
180
173
-
:return: The description of this DatasetColumn. # noqa: E501
174
-
:rtype: str
175
-
"""
181
+
:return: The description of this DatasetColumn. # noqa: E501
182
+
:rtype: str
183
+
"""
176
184
returnself._description
177
185
178
186
@description.setter
179
187
defdescription(self, description):
180
188
"""Sets the description of this DatasetColumn.
181
189
182
-
The description of the column # noqa: E501
190
+
The description of the column # noqa: E501
183
191
184
-
:param description: The description of this DatasetColumn. # noqa: E501
185
-
:type: str
186
-
"""
192
+
:param description: The description of this DatasetColumn. # noqa:
193
+
E501
194
+
:type: str
195
+
"""
187
196
188
197
self._description=description
189
198
190
199
defto_dict(self):
191
-
"""Returns the model properties as a dict"""
200
+
"""Returns the model properties as a dict."""
192
201
result= {}
193
202
194
203
forattr, _insix.iteritems(self.column_types):
@@ -209,20 +218,20 @@ def to_dict(self):
209
218
returnresult
210
219
211
220
defto_str(self):
212
-
"""Returns the string representation of the model"""
221
+
"""Returns the string representation of the model."""
0 commit comments