Files
odoo-stubs/odoo-stubs/osv/query.pyi
Trinh Anh Ngoc 2e239206a5 Cleanup
2023-05-19 18:17:08 +07:00

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): ...