mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
16 lines
657 B
Python
16 lines
657 B
Python
# Stubs for odoo.osv.query (Python 3)
|
|
#
|
|
# NOTE: This dynamically typed stub was automatically generated by stubgen.
|
|
|
|
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: Any, implicit: bool = ..., outer: bool = ..., extra: Optional[Any] = ..., extra_params: Any = ...): ...
|
|
def get_sql(self): ...
|