mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
26 lines
615 B
Python
26 lines
615 B
Python
from typing import Any, Optional
|
|
|
|
class Query:
|
|
tables: Any
|
|
where_clause: Any
|
|
where_clause_params: Any
|
|
joins: Any
|
|
extras: Any
|
|
def __init__(
|
|
self,
|
|
tables: Optional[Any] = ...,
|
|
where_clause: Optional[Any] = ...,
|
|
where_clause_params: Optional[Any] = ...,
|
|
joins: Optional[Any] = ...,
|
|
extras: Optional[Any] = ...,
|
|
) -> None: ...
|
|
def add_join(
|
|
self,
|
|
connection,
|
|
implicit: bool = ...,
|
|
outer: bool = ...,
|
|
extra: Optional[Any] = ...,
|
|
extra_params: Any = ...,
|
|
): ...
|
|
def get_sql(self): ...
|