mirror of
https://github.com/FlipsideCrypto/sdk.git
synced 2026-02-06 10:46:43 +00:00
23 lines
861 B
Python
23 lines
861 B
Python
from typing import Optional, Union
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class Query(BaseModel):
|
|
sql: str = Field(None, description="SQL query to execute")
|
|
ttl_minutes: Optional[int] = Field(
|
|
None, description="The number of minutes to cache the query results"
|
|
)
|
|
timeout_minutes: Optional[int] = Field(
|
|
None, description="The number of minutes to timeout the query"
|
|
)
|
|
retry_interval_seconds: Optional[Union[int, float]] = Field(
|
|
1, description="The number of seconds to use between retries"
|
|
)
|
|
cached: Optional[bool] = Field(
|
|
None,
|
|
description="An override on the cache. A value of true will Re-Execute the query.",
|
|
)
|
|
page_size: int = Field(None, description="The number of results to return per page")
|
|
page_number: int = Field(None, description="The page number to return")
|