ChannelTransferInfo

public struct ChannelTransferInfo : Codable, Equatable

Information used by an integration to transfer the conversation to a different channel.

  • An object specifying target channels available for the transfer. Each property of this object represents an available transfer target. Currently, the only supported property is chat, representing the web chat integration.

    Declaration

    Swift

    public var target: ChannelTransferTarget
  • Initialize a ChannelTransferInfo with member variables.

    Declaration

    Swift

    public init(
        target: ChannelTransferTarget
    )

    Parameters

    target

    An object specifying target channels available for the transfer. Each property of this object represents an available transfer target. Currently, the only supported property is chat, representing the web chat integration.

    Return Value

    An initialized ChannelTransferInfo.