Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 2.41 KB

File metadata and controls

47 lines (38 loc) · 2.41 KB

ConnectedAccountForResponse

A connected account

Properties

Name Type Description Notes
id UUID Id [optional]
created_at datetime Creation date [optional]
updated_at datetime Last time the record was changed [optional]
deleted_at datetime Date when the record was deleted [optional]
handle str The account handle (email, username, phone number, etc.) [optional]
provider str The account provider [optional]
access_token str Messaging provider access token [optional]
refresh_token str Messaging provider refresh token [optional]
last_sync_history_id str Last sync history ID [optional]
auth_failed_at datetime Auth failed at [optional]
last_credentials_refreshed_at datetime Last credentials refreshed at [optional]
handle_aliases str Handle Aliases [optional]
scopes List[str] Scopes [optional]
connection_parameters object JSON object containing custom connection parameters [optional]
account_owner_id UUID [optional]
calendar_channels List[CalendarChannelForResponse] Calendar Channels [optional]
account_owner WorkspaceMemberForResponse [optional]
message_channels List[MessageChannelForResponse] Message Channels [optional]

Example

from twentycrm_client.models.connected_account_for_response import ConnectedAccountForResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ConnectedAccountForResponse from a JSON string
connected_account_for_response_instance = ConnectedAccountForResponse.from_json(json)
# print the JSON string representation of the object
print(ConnectedAccountForResponse.to_json())

# convert the object into a dict
connected_account_for_response_dict = connected_account_for_response_instance.to_dict()
# create an instance of ConnectedAccountForResponse from a dict
connected_account_for_response_from_dict = ConnectedAccountForResponse.from_dict(connected_account_for_response_dict)

[Back to Model list] [Back to API list] [Back to README]