*** id: 8a72c6fc-87fb-48c2-a058-67e68a0744c8 title: Relay.Calling.ConnectResult slug: /python/reference/calling/results/connect description: The result object that is returned when connecting a call. max-toc-depth: 3 ---------------- [connect]: /docs/server-sdk/v2/python/reference/calling/call#connect [relay-calling-call]: /docs/server-sdk/v2/python/reference/calling/call [relay-event]: /docs/server-sdk/v2/python/reference/event ## Relay.Calling.ConnectResult This object returned from [`connect`][connect] method that represents the final result of a connection between your call and a remote one. ### Properties | Property | Type | Description | | ------------ | ------------------------------------------ | ------------------------------------------------- | | `successful` | boolean | Whether the call has been connected successfully. | | `event` | [`Relay.Event`][relay-event] | Last event that completed the operation. | | `call` | [`Relay.Calling.Call`][relay-calling-call] | Remote Call connected with yours. |