Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/finch/types/introspection.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# File generated from our OpenAPI spec by Stainless.

from typing import List
from typing_extensions import Literal

from .._models import BaseModel

Expand All @@ -14,9 +15,18 @@ class Introspection(BaseModel):
client_id: str
"""The client id of the application associated with the `access_token`."""

client_type: Literal["production", "development", "sandbox"]
"""The type of application associated with a token."""

company_id: str
"""The Finch uuid of the company associated with the `access_token`."""

connection_type: Literal["provider", "finch"]
"""
The type of the connection associated with the token.<br> `provider` -
connection to an external provider<br> `finch` - finch-generated data.
"""

manual: bool
"""
Whether the connection associated with the `access_token` uses the Assisted
Expand Down