Skip to main content

Module airbyte_agent_sdk.connectors.pylon.models

Pydantic models for pylon connector.

This module contains Pydantic models used for authentication configuration and response envelope types.

Classes

Account(**data: Any) : Account type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

channels: list[airbyte_agent_sdk.connectors.pylon.models.AccountChannel] | None : The type of the None singleton.

created_at: str | None : The type of the None singleton.

custom_fields: dict[str, typing.Any] | None : The type of the None singleton.

domain: str | None : The type of the None singleton.

domains: list[str] | None : The type of the None singleton.

external_ids: dict[str, typing.Any] | None : The type of the None singleton.

id: str | None : The type of the None singleton.

is_disabled: bool | None : The type of the None singleton.

latest_customer_activity_time: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

owner: typing.Any | None : The type of the None singleton.

primary_domain: str | None : The type of the None singleton.

tags: list[str] | None : The type of the None singleton.

type_: str | None : The type of the None singleton.

AccountChannel(**data: Any) : AccountChannel type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

channel_id: str | None : The type of the None singleton.

is_primary: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

source: str | None : The type of the None singleton.

AccountCreateParams(**data: Any) : AccountCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

domains: list[str] | None : The type of the None singleton.

logo_url: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str : The type of the None singleton.

owner_id: str | None : The type of the None singleton.

primary_domain: str | None : The type of the None singleton.

tags: list[str] | None : The type of the None singleton.

AccountResponse(**data: Any) : AccountResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.Account | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

AccountUpdateParams(**data: Any) : AccountUpdateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

domains: list[str] | None : The type of the None singleton.

is_disabled: bool | None : The type of the None singleton.

logo_url: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

owner_id: str | None : The type of the None singleton.

primary_domain: str | None : The type of the None singleton.

tags: list[str] | None : The type of the None singleton.

AccountsListResultMeta(**data: Any) : Metadata for accounts.Action.LIST operation

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

has_next_page: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

next_cursor: str | None : The type of the None singleton.

AccountsResponse(**data: Any) : AccountsResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: list[airbyte_agent_sdk.connectors.pylon.models.Account] | None : The type of the None singleton.

model_config : The type of the None singleton.

pagination: airbyte_agent_sdk.connectors.pylon.models.Pagination | None : The type of the None singleton.

request_id: str | None : The type of the None singleton.

AccountsSearchData(**data: Any) : Search result data for accounts entity.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

created_at: str | None : Timestamp when the account was created, in ISO 8601 format

domain: str | None : Primary domain associated with the account

id: str : Unique identifier for the account

is_disabled: bool | None : Whether the account has been disabled

latest_customer_activity_time: str | None : Timestamp of the most recent activity from this account, in ISO 8601 format

model_config : The type of the None singleton.

name: str | None : Name of the account (customer organization)

primary_domain: str | None : Canonical primary domain for the account

type_: str | None : Classification of the account (e.g. customer, prospect)

AirbyteSearchMeta(**data: Any) : Pagination metadata for search responses.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

cursor: str | None : Cursor for fetching the next page of results.

has_more: bool : Whether more results are available.

model_config : The type of the None singleton.

took_ms: int | None : Time taken to execute the search in milliseconds.

AirbyteSearchResult(**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel
  • typing.Generic

Descendants

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult[AccountsSearchData]
  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult[ContactsSearchData]
  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult[CustomFieldsSearchData]
  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult[IssuesSearchData]
  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult[MessagesSearchData]
  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult[TagsSearchData]
  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult[TeamsSearchData]
  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult[TicketFormsSearchData]
  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult[UserRolesSearchData]
  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult[UsersSearchData]

Class variables

data: list[~D] : List of matching records.

meta: airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchMeta : Pagination metadata.

model_config : The type of the None singleton.

AirbyteSearchResult[AccountsSearchData](**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

AccountsSearchResult(**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

AirbyteSearchResult[ContactsSearchData](**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

ContactsSearchResult(**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

AirbyteSearchResult[CustomFieldsSearchData](**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

CustomFieldsSearchResult(**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

AirbyteSearchResult[IssuesSearchData](**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

IssuesSearchResult(**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

AirbyteSearchResult[MessagesSearchData](**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

MessagesSearchResult(**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

AirbyteSearchResult[TagsSearchData](**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

TagsSearchResult(**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

AirbyteSearchResult[TeamsSearchData](**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

TeamsSearchResult(**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

AirbyteSearchResult[TicketFormsSearchData](**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

TicketFormsSearchResult(**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

AirbyteSearchResult[UserRolesSearchData](**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

UserRolesSearchResult(**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

AirbyteSearchResult[UsersSearchData](**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

UsersSearchResult(**data: Any) : Result from Airbyte cache search operations with typed records.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.AirbyteSearchResult
  • pydantic.main.BaseModel
  • typing.Generic

Article(**data: Any) : Article type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

author_user_id: str | None : The type of the None singleton.

body_html: str | None : The type of the None singleton.

created_at: str | None : The type of the None singleton.

id: str | None : The type of the None singleton.

is_published: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

slug: str | None : The type of the None singleton.

title: str | None : The type of the None singleton.

updated_at: str | None : The type of the None singleton.

ArticleCreateParams(**data: Any) : ArticleCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

author_user_id: str : The type of the None singleton.

body_html: str : The type of the None singleton.

is_published: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

slug: str | None : The type of the None singleton.

title: str : The type of the None singleton.

ArticleResponse(**data: Any) : ArticleResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.Article | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

ArticleUpdateParams(**data: Any) : ArticleUpdateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

body_html: str | None : The type of the None singleton.

model_config : The type of the None singleton.

title: str | None : The type of the None singleton.

CSATResponse(**data: Any) : CSATResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

comment: str | None : The type of the None singleton.

model_config : The type of the None singleton.

score: int | None : The type of the None singleton.

Collection(**data: Any) : Collection type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

created_at: str | None : The type of the None singleton.

description: str | None : The type of the None singleton.

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

slug: str | None : The type of the None singleton.

title: str | None : The type of the None singleton.

CollectionCreateParams(**data: Any) : CollectionCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

description: str | None : The type of the None singleton.

model_config : The type of the None singleton.

slug: str | None : The type of the None singleton.

title: str : The type of the None singleton.

CollectionResponse(**data: Any) : CollectionResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.Collection | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

Contact(**data: Any) : Contact type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

account: typing.Any | None : The type of the None singleton.

avatar_url: str | None : The type of the None singleton.

custom_fields: dict[str, typing.Any] | None : The type of the None singleton.

email: str | None : The type of the None singleton.

emails: list[str] | None : The type of the None singleton.

id: str | None : The type of the None singleton.

integration_user_ids: list[airbyte_agent_sdk.connectors.pylon.models.IntegrationUserId] | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

phone_numbers: list[str] | None : The type of the None singleton.

portal_role: str | None : The type of the None singleton.

portal_role_id: str | None : The type of the None singleton.

ContactCreateParams(**data: Any) : ContactCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

account_id: str | None : The type of the None singleton.

avatar_url: str | None : The type of the None singleton.

email: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str : The type of the None singleton.

ContactResponse(**data: Any) : ContactResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.Contact | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

ContactUpdateParams(**data: Any) : ContactUpdateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

account_id: str | None : The type of the None singleton.

email: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

ContactsListResultMeta(**data: Any) : Metadata for contacts.Action.LIST operation

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

has_next_page: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

next_cursor: str | None : The type of the None singleton.

ContactsResponse(**data: Any) : ContactsResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: list[airbyte_agent_sdk.connectors.pylon.models.Contact] | None : The type of the None singleton.

model_config : The type of the None singleton.

pagination: airbyte_agent_sdk.connectors.pylon.models.Pagination | None : The type of the None singleton.

request_id: str | None : The type of the None singleton.

ContactsSearchData(**data: Any) : Search result data for contacts entity.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

email: str | None : Primary email address of the contact

id: str : Unique identifier for the contact

model_config : The type of the None singleton.

name: str | None : Full name of the contact

portal_role: str | None : Role the contact has in the customer portal

primary_phone_number: str | None : Primary phone number of the contact

CustomField(**data: Any) : CustomField type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

created_at: str | None : The type of the None singleton.

default_value: str | None : The type of the None singleton.

default_values: list[str] | None : The type of the None singleton.

description: str | None : The type of the None singleton.

id: str | None : The type of the None singleton.

is_read_only: bool | None : The type of the None singleton.

label: str | None : The type of the None singleton.

model_config : The type of the None singleton.

number_metadata: typing.Any | None : The type of the None singleton.

object_type: str | None : The type of the None singleton.

select_metadata: typing.Any | None : The type of the None singleton.

slug: str | None : The type of the None singleton.

source: str | None : The type of the None singleton.

type_: str | None : The type of the None singleton.

updated_at: str | None : The type of the None singleton.

CustomFieldResponse(**data: Any) : CustomFieldResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.CustomField | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

CustomFieldValue(**data: Any) : CustomFieldValue type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

model_config : The type of the None singleton.

slug: str | None : The type of the None singleton.

value: str | None : The type of the None singleton.

values: list[str] | None : The type of the None singleton.

CustomFieldsListResultMeta(**data: Any) : Metadata for custom_fields.Action.LIST operation

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

has_next_page: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

next_cursor: str | None : The type of the None singleton.

CustomFieldsResponse(**data: Any) : CustomFieldsResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: list[airbyte_agent_sdk.connectors.pylon.models.CustomField] | None : The type of the None singleton.

model_config : The type of the None singleton.

pagination: airbyte_agent_sdk.connectors.pylon.models.Pagination | None : The type of the None singleton.

request_id: str | None : The type of the None singleton.

CustomFieldsSearchData(**data: Any) : Search result data for custom_fields entity.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

created_at: str | None : Timestamp when the custom field was created, in ISO 8601 format

id: str : Unique identifier for the custom field

is_read_only: bool | None : Whether the custom field is read-only

label: str | None : Display label of the custom field

model_config : The type of the None singleton.

object_type: str | None : Type of object this custom field applies to (e.g. issue, account)

slug: str | None : URL-safe identifier for the custom field

type_: str | None : Data type of the custom field (e.g. text, select)

DeleteIssueResponse(**data: Any) : DeleteIssueResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

EmailMessageInfo(**data: Any) : EmailMessageInfo type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

bcc_emails: list[str] | None : The type of the None singleton.

cc_emails: list[str] | None : The type of the None singleton.

from_email: str | None : The type of the None singleton.

message_id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

to_emails: list[str] | None : The type of the None singleton.

ExternalIssue(**data: Any) : ExternalIssue type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

external_id: str | None : The type of the None singleton.

link: str | None : The type of the None singleton.

model_config : The type of the None singleton.

source: str | None : The type of the None singleton.

IntegrationUserId(**data: Any) : IntegrationUserId type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

source: str | None : The type of the None singleton.

Issue(**data: Any) : Issue type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

account: typing.Any | None : The type of the None singleton.

assignee: typing.Any | None : The type of the None singleton.

attachment_urls: list[str] | None : The type of the None singleton.

author_unverified: bool | None : The type of the None singleton.

body_html: str | None : The type of the None singleton.

business_hours_first_response_seconds: int | None : The type of the None singleton.

business_hours_resolution_seconds: int | None : The type of the None singleton.

business_hours_time_in_status_seconds: dict[str, int] | None : The type of the None singleton.

chat_widget_info: typing.Any | None : The type of the None singleton.

created_at: str | None : The type of the None singleton.

csat_responses: list[airbyte_agent_sdk.connectors.pylon.models.CSATResponse] | None : The type of the None singleton.

custom_fields: dict[str, airbyte_agent_sdk.connectors.pylon.models.CustomFieldValue] | None : The type of the None singleton.

customer_portal_visible: bool | None : The type of the None singleton.

external_issues: list[airbyte_agent_sdk.connectors.pylon.models.ExternalIssue] | None : The type of the None singleton.

first_response_seconds: int | None : The type of the None singleton.

first_response_time: str | None : The type of the None singleton.

id: str | None : The type of the None singleton.

latest_message_time: str | None : The type of the None singleton.

link: str | None : The type of the None singleton.

model_config : The type of the None singleton.

number: int | None : The type of the None singleton.

number_of_touches: int | None : The type of the None singleton.

requester: typing.Any | None : The type of the None singleton.

resolution_seconds: int | None : The type of the None singleton.

resolution_time: str | None : The type of the None singleton.

slack: typing.Any | None : The type of the None singleton.

snoozed_until_time: str | None : The type of the None singleton.

source: typing.Any | None : The type of the None singleton.

state: str | None : The type of the None singleton.

tags: list[str] | None : The type of the None singleton.

team: typing.Any | None : The type of the None singleton.

time_in_status_seconds: dict[str, int] | None : The type of the None singleton.

title: str | None : The type of the None singleton.

type_: typing.Any | None : The type of the None singleton.

updated_at: str | None : The type of the None singleton.

IssueAssignParams(**data: Any) : IssueAssignParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

assignee_id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

team_id: str | None : The type of the None singleton.

IssueChatWidgetInfo(**data: Any) : IssueChatWidgetInfo type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

model_config : The type of the None singleton.

page_url: str | None : The type of the None singleton.

IssueCreateParams(**data: Any) : IssueCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

account_id: str | None : The type of the None singleton.

assignee_id: str | None : The type of the None singleton.

body_html: str : The type of the None singleton.

model_config : The type of the None singleton.

priority: str | None : The type of the None singleton.

requester_email: str | None : The type of the None singleton.

requester_name: str | None : The type of the None singleton.

tags: list[str] | None : The type of the None singleton.

team_id: str | None : The type of the None singleton.

title: str : The type of the None singleton.

IssueNote(**data: Any) : IssueNote type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

body_html: str | None : The type of the None singleton.

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

timestamp: str | None : The type of the None singleton.

IssueNoteCreateParams(**data: Any) : IssueNoteCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

body_html: str : The type of the None singleton.

message_id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

thread_id: str | None : The type of the None singleton.

IssueNoteResponse(**data: Any) : IssueNoteResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.IssueNote | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

IssueReplyCreateParams(**data: Any) : IssueReplyCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

attachment_urls: list[str] | None : The type of the None singleton.

body_html: str : The type of the None singleton.

contact_id: str | None : The type of the None singleton.

message_id: str : The type of the None singleton.

model_config : The type of the None singleton.

user_id: str | None : The type of the None singleton.

IssueReplyData(**data: Any) : IssueReplyData type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str | None : The type of the None singleton.

issue_id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

IssueReplyResponse(**data: Any) : IssueReplyResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.IssueReplyData | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

IssueResponse(**data: Any) : IssueResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.Issue | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

IssueStatusUpdateParams(**data: Any) : IssueStatusUpdateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

model_config : The type of the None singleton.

state: str : The type of the None singleton.

IssueThread(**data: Any) : IssueThread type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

IssueThreadCreateParams(**data: Any) : IssueThreadCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

IssueThreadResponse(**data: Any) : IssueThreadResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.IssueThread | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

IssueUpdateParams(**data: Any) : IssueUpdateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

account_id: str | None : The type of the None singleton.

assignee_id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

state: str | None : The type of the None singleton.

tags: list[str] | None : The type of the None singleton.

team_id: str | None : The type of the None singleton.

IssuesListResultMeta(**data: Any) : Metadata for issues.Action.LIST operation

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

has_next_page: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

next_cursor: str | None : The type of the None singleton.

IssuesResponse(**data: Any) : IssuesResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: list[airbyte_agent_sdk.connectors.pylon.models.Issue] | None : The type of the None singleton.

model_config : The type of the None singleton.

pagination: airbyte_agent_sdk.connectors.pylon.models.Pagination | None : The type of the None singleton.

request_id: str | None : The type of the None singleton.

IssuesSearchData(**data: Any) : Search result data for issues entity.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

created_at: str | None : Timestamp when the issue was created, in ISO 8601 format

customer_portal_visible: bool | None : Whether the issue is visible in the customer portal

id: str : Unique identifier for the issue

latest_message_time: str | None : Timestamp of the most recent message on the issue, in ISO 8601 format

model_config : The type of the None singleton.

number: int | None : Human-readable issue number within the workspace

resolution_time: str | None : Timestamp when the issue was resolved, in ISO 8601 format

snoozed_until_time: str | None : Timestamp the issue is snoozed until, in ISO 8601 format

source: str | None : Channel the issue originated from (e.g. email, slack)

state: str | None : Current state of the issue (e.g. new, in_progress, closed)

title: str | None : Title of the issue

type_: str | None : Type classification of the issue

MeResponse(**data: Any) : MeResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.User | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

Message(**data: Any) : Message type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

author: typing.Any | None : The type of the None singleton.

email_info: typing.Any | None : The type of the None singleton.

file_urls: list[str] | None : The type of the None singleton.

id: str | None : The type of the None singleton.

is_private: bool | None : The type of the None singleton.

message_html: str | None : The type of the None singleton.

model_config : The type of the None singleton.

source: str | None : The type of the None singleton.

thread_id: str | None : The type of the None singleton.

timestamp: str | None : The type of the None singleton.

MessageAuthor(**data: Any) : MessageAuthor type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

avatar_url: str | None : The type of the None singleton.

contact: typing.Any | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

user: typing.Any | None : The type of the None singleton.

MessagesListResultMeta(**data: Any) : Metadata for messages.Action.LIST operation

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

has_next_page: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

next_cursor: str | None : The type of the None singleton.

MessagesResponse(**data: Any) : MessagesResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: list[airbyte_agent_sdk.connectors.pylon.models.Message] | None : The type of the None singleton.

model_config : The type of the None singleton.

pagination: airbyte_agent_sdk.connectors.pylon.models.Pagination | None : The type of the None singleton.

request_id: str | None : The type of the None singleton.

MessagesSearchData(**data: Any) : Search result data for messages entity.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str : Unique identifier for the message

is_private: bool | None : Whether the message is an internal note (not visible to the customer)

model_config : The type of the None singleton.

source: str | None : Channel the message was sent through (e.g. email, slack)

thread_id: str | None : Identifier of the thread this message belongs to

timestamp: str | None : Timestamp the message was posted, in ISO 8601 format

Milestone(**data: Any) : Milestone type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

created_at: str | None : The type of the None singleton.

due_date: str | None : The type of the None singleton.

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

project_id: str | None : The type of the None singleton.

updated_at: str | None : The type of the None singleton.

MilestoneCreateParams(**data: Any) : MilestoneCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

due_date: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str : The type of the None singleton.

project_id: str : The type of the None singleton.

MilestoneResponse(**data: Any) : MilestoneResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.Milestone | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

MilestoneUpdateParams(**data: Any) : MilestoneUpdateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

due_date: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

MiniAccount(**data: Any) : MiniAccount type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

MiniContact(**data: Any) : MiniContact type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

email: str | None : The type of the None singleton.

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

MiniTeam(**data: Any) : MiniTeam type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

MiniUser(**data: Any) : MiniUser type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

email: str | None : The type of the None singleton.

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

NumberMetadata(**data: Any) : NumberMetadata type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

currency: str | None : The type of the None singleton.

decimal_places: int | None : The type of the None singleton.

format: str | None : The type of the None singleton.

model_config : The type of the None singleton.

Pagination(**data: Any) : Pagination type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

cursor: str | None : The type of the None singleton.

has_next_page: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

Project(**data: Any) : Project type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

account_id: str | None : The type of the None singleton.

created_at: str | None : The type of the None singleton.

description_html: str | None : The type of the None singleton.

end_date: str | None : The type of the None singleton.

id: str | None : The type of the None singleton.

is_archived: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

owner_id: str | None : The type of the None singleton.

start_date: str | None : The type of the None singleton.

updated_at: str | None : The type of the None singleton.

ProjectCreateParams(**data: Any) : ProjectCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

account_id: str : The type of the None singleton.

description_html: str | None : The type of the None singleton.

end_date: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str : The type of the None singleton.

start_date: str | None : The type of the None singleton.

ProjectResponse(**data: Any) : ProjectResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.Project | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

ProjectUpdateParams(**data: Any) : ProjectUpdateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

description_html: str | None : The type of the None singleton.

is_archived: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

PylonAuthConfig(**data: Any) : API Token Authentication

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

api_token: str : Your Pylon API token. Only admin users can create API tokens.

model_config : The type of the None singleton.

PylonCheckResult(**data: Any) : Result of a health check operation.

Returned by the check() method to indicate connectivity and credential status.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

checked_action: str | None : Action name used for the health check.

checked_entity: str | None : Entity name used for the health check.

error: str | None : Error message if status is 'unhealthy', None otherwise.

model_config : The type of the None singleton.

status: str : Health check status: 'healthy' or 'unhealthy'.

PylonExecuteResult(**data: Any) : Response envelope with data only.

Used for actions that return data without metadata.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel
  • typing.Generic

Descendants

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta

Class variables

data: ~T : Response data containing the result of the action.

model_config : The type of the None singleton.

PylonExecuteResultWithMeta(**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

Descendants

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta[list[Account], AccountsListResultMeta]
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta[list[Contact], ContactsListResultMeta]
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta[list[CustomField], CustomFieldsListResultMeta]
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta[list[Issue], IssuesListResultMeta]
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta[list[Message], MessagesListResultMeta]
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta[list[Tag], TagsListResultMeta]
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta[list[Team], TeamsListResultMeta]
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta[list[TicketForm], TicketFormsListResultMeta]
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta[list[UserRole], UserRolesListResultMeta]
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta[list[User], UsersListResultMeta]

Class variables

meta: ~S : Metadata about the response (e.g., pagination cursors, record counts).

PylonExecuteResultWithMeta[list[Account], AccountsListResultMeta](**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

AccountsListResult(**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

PylonExecuteResultWithMeta[list[Contact], ContactsListResultMeta](**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

ContactsListResult(**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

PylonExecuteResultWithMeta[list[CustomField], CustomFieldsListResultMeta](**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

CustomFieldsListResult(**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

PylonExecuteResultWithMeta[list[Issue], IssuesListResultMeta](**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

IssuesListResult(**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

PylonExecuteResultWithMeta[list[Message], MessagesListResultMeta](**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

MessagesListResult(**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

PylonExecuteResultWithMeta[list[Tag], TagsListResultMeta](**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

TagsListResult(**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

PylonExecuteResultWithMeta[list[Team], TeamsListResultMeta](**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

TeamsListResult(**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

PylonExecuteResultWithMeta[list[TicketForm], TicketFormsListResultMeta](**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

TicketFormsListResult(**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

PylonExecuteResultWithMeta[list[UserRole], UserRolesListResultMeta](**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

UserRolesListResult(**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

PylonExecuteResultWithMeta[list[User], UsersListResultMeta](**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

Class variables

model_config : The type of the None singleton.

UsersListResult(**data: Any) : Response envelope with data and metadata.

Used for actions that return both data and metadata (e.g., pagination info).

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResultWithMeta
  • airbyte_agent_sdk.connectors.pylon.models.PylonExecuteResult
  • pydantic.main.BaseModel
  • typing.Generic

SelectMetadata(**data: Any) : SelectMetadata type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

model_config : The type of the None singleton.

options: list[airbyte_agent_sdk.connectors.pylon.models.SelectOption] | None : The type of the None singleton.

SelectOption(**data: Any) : SelectOption type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

label: str | None : The type of the None singleton.

model_config : The type of the None singleton.

slug: str | None : The type of the None singleton.

SlackInfo(**data: Any) : SlackInfo type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

channel_id: str | None : The type of the None singleton.

message_ts: str | None : The type of the None singleton.

model_config : The type of the None singleton.

workspace_id: str | None : The type of the None singleton.

Tag(**data: Any) : Tag type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

hex_color: str | None : The type of the None singleton.

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

object_type: str | None : The type of the None singleton.

value: str | None : The type of the None singleton.

TagCreateParams(**data: Any) : TagCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

hex_color: str | None : The type of the None singleton.

model_config : The type of the None singleton.

object_type: str : The type of the None singleton.

value: str : The type of the None singleton.

TagResponse(**data: Any) : TagResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.Tag | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

TagUpdateParams(**data: Any) : TagUpdateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

hex_color: str | None : The type of the None singleton.

model_config : The type of the None singleton.

value: str | None : The type of the None singleton.

TagsListResultMeta(**data: Any) : Metadata for tags.Action.LIST operation

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

has_next_page: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

next_cursor: str | None : The type of the None singleton.

TagsResponse(**data: Any) : TagsResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: list[airbyte_agent_sdk.connectors.pylon.models.Tag] | None : The type of the None singleton.

model_config : The type of the None singleton.

pagination: airbyte_agent_sdk.connectors.pylon.models.Pagination | None : The type of the None singleton.

request_id: str | None : The type of the None singleton.

TagsSearchData(**data: Any) : Search result data for tags entity.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str : Unique identifier for the tag

model_config : The type of the None singleton.

object_type: str | None : Type of object this tag applies to (e.g. issue, account)

value: str | None : Display value of the tag

Task(**data: Any) : Task type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

assignee_id: str | None : The type of the None singleton.

body_html: str | None : The type of the None singleton.

created_at: str | None : The type of the None singleton.

due_date: str | None : The type of the None singleton.

id: str | None : The type of the None singleton.

milestone_id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

project_id: str | None : The type of the None singleton.

status: str | None : The type of the None singleton.

title: str | None : The type of the None singleton.

updated_at: str | None : The type of the None singleton.

TaskCreateParams(**data: Any) : TaskCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

assignee_id: str | None : The type of the None singleton.

body_html: str | None : The type of the None singleton.

due_date: str | None : The type of the None singleton.

milestone_id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

project_id: str | None : The type of the None singleton.

status: str | None : The type of the None singleton.

title: str : The type of the None singleton.

TaskResponse(**data: Any) : TaskResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.Task | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

TaskUpdateParams(**data: Any) : TaskUpdateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

assignee_id: str | None : The type of the None singleton.

body_html: str | None : The type of the None singleton.

model_config : The type of the None singleton.

status: str | None : The type of the None singleton.

title: str | None : The type of the None singleton.

Team(**data: Any) : Team type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

users: list[airbyte_agent_sdk.connectors.pylon.models.MiniUser] | None : The type of the None singleton.

TeamCreateParams(**data: Any) : TeamCreateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

TeamResponse(**data: Any) : TeamResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.Team | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

TeamUpdateParams(**data: Any) : TeamUpdateParams type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

TeamsListResultMeta(**data: Any) : Metadata for teams.Action.LIST operation

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

has_next_page: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

next_cursor: str | None : The type of the None singleton.

TeamsResponse(**data: Any) : TeamsResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: list[airbyte_agent_sdk.connectors.pylon.models.Team] | None : The type of the None singleton.

model_config : The type of the None singleton.

pagination: airbyte_agent_sdk.connectors.pylon.models.Pagination | None : The type of the None singleton.

request_id: str | None : The type of the None singleton.

TeamsSearchData(**data: Any) : Search result data for teams entity.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str : Unique identifier for the team

model_config : The type of the None singleton.

name: str | None : Name of the team

TicketForm(**data: Any) : TicketForm type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

description_html: str | None : The type of the None singleton.

fields: list[airbyte_agent_sdk.connectors.pylon.models.TicketFormField] | None : The type of the None singleton.

id: str | None : The type of the None singleton.

is_public: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

slug: str | None : The type of the None singleton.

url: str | None : The type of the None singleton.

TicketFormField(**data: Any) : TicketFormField type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

description_html: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

slug: str | None : The type of the None singleton.

type_: str | None : The type of the None singleton.

TicketFormsListResultMeta(**data: Any) : Metadata for ticket_forms.Action.LIST operation

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

has_next_page: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

next_cursor: str | None : The type of the None singleton.

TicketFormsResponse(**data: Any) : TicketFormsResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: list[airbyte_agent_sdk.connectors.pylon.models.TicketForm] | None : The type of the None singleton.

model_config : The type of the None singleton.

pagination: airbyte_agent_sdk.connectors.pylon.models.Pagination | None : The type of the None singleton.

request_id: str | None : The type of the None singleton.

TicketFormsSearchData(**data: Any) : Search result data for ticket_forms entity.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str : Unique identifier for the ticket form

is_public: bool | None : Whether the ticket form is publicly accessible

model_config : The type of the None singleton.

name: str | None : Display name of the ticket form

slug: str | None : URL-safe identifier for the ticket form

User(**data: Any) : User type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

avatar_url: str | None : The type of the None singleton.

email: str | None : The type of the None singleton.

emails: list[str] | None : The type of the None singleton.

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

role_id: str | None : The type of the None singleton.

status: str | None : The type of the None singleton.

UserResponse(**data: Any) : UserResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: airbyte_agent_sdk.connectors.pylon.models.User | None : The type of the None singleton.

model_config : The type of the None singleton.

request_id: str | None : The type of the None singleton.

UserRole(**data: Any) : UserRole type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str | None : The type of the None singleton.

model_config : The type of the None singleton.

name: str | None : The type of the None singleton.

slug: str | None : The type of the None singleton.

UserRolesListResultMeta(**data: Any) : Metadata for user_roles.Action.LIST operation

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

has_next_page: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

next_cursor: str | None : The type of the None singleton.

UserRolesResponse(**data: Any) : UserRolesResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: list[airbyte_agent_sdk.connectors.pylon.models.UserRole] | None : The type of the None singleton.

model_config : The type of the None singleton.

pagination: airbyte_agent_sdk.connectors.pylon.models.Pagination | None : The type of the None singleton.

request_id: str | None : The type of the None singleton.

UserRolesSearchData(**data: Any) : Search result data for user_roles entity.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

id: str : Unique identifier for the user role

model_config : The type of the None singleton.

name: str | None : Display name of the user role

slug: str | None : URL-safe identifier for the user role

UsersListResultMeta(**data: Any) : Metadata for users.Action.LIST operation

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

has_next_page: bool | None : The type of the None singleton.

model_config : The type of the None singleton.

next_cursor: str | None : The type of the None singleton.

UsersResponse(**data: Any) : UsersResponse type definition

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

data: list[airbyte_agent_sdk.connectors.pylon.models.User] | None : The type of the None singleton.

model_config : The type of the None singleton.

pagination: airbyte_agent_sdk.connectors.pylon.models.Pagination | None : The type of the None singleton.

request_id: str | None : The type of the None singleton.

UsersSearchData(**data: Any) : Search result data for users entity.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors (in MRO)

  • pydantic.main.BaseModel

Class variables

email: str | None : Primary email address of the user

id: str : Unique identifier for the user

model_config : The type of the None singleton.

name: str | None : Full name of the user

role_id: str | None : Identifier of the user's role

status: str | None : Current status of the user (e.g. active, disabled)

Was this page helpful?