OBJECT

HostTargetChannelPayload

HostTargetChannelPayload is the response after attempting to host.

link GraphQL Schema definition

1type HostTargetChannelPayload {
2
3# The client error that has occurred.
4# Null if the operation is successful.
5error: HostTargetChannelError
6
7# The channel that is hosting.
8source: User
9
10# The target channel that is hosted.
11target: User
12
13}