File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -231,15 +231,14 @@ class BaseQueryElements:
231231 """Contains raw query and parsed elements.
232232
233233 Attributes:
234- query_title : Title of the query that needs to be parsed.
235- query_text : Text of the query that needs to be parsed.
234+ title : Title of the query that needs to be parsed.
235+ text : Text of the query that needs to be parsed.
236236 resource_name: Name of Google Ads API reporting resource.
237237 fields: Ads API fields that need to be fetched.
238238 column_names: Friendly names for fields which are used when saving data
239239 column_names: Friendly names for fields which are used when saving data
240240 customizers: Attributes of fields that need to be be extracted.
241241 virtual_columns: Attributes of fields that need to be be calculated.
242- is_constant_resource: Whether resource considered a constant one.
243242 is_builtin_query: Whether query is built-in.
244243 """
245244
@@ -256,6 +255,7 @@ class BaseQueryElements:
256255 virtual_columns : dict [str , VirtualColumn ] = dataclasses .field (
257256 default_factory = dict
258257 )
258+ is_builtin_query : bool = False
259259
260260 def __eq__ (self , other : BaseQueryElements ) -> bool : # noqa: D105
261261 return (
You can’t perform that action at this time.
0 commit comments