ChannelTransferTarget

public struct ChannelTransferTarget : Codable, Equatable

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.

  • Information for transferring to the web chat integration.

    Declaration

    Swift

    public var chat: ChannelTransferTargetChat?
  • Initialize a ChannelTransferTarget with member variables.

    Declaration

    Swift

    public init(
        chat: ChannelTransferTargetChat? = nil
    )

    Parameters

    chat

    Information for transferring to the web chat integration.

    Return Value

    An initialized ChannelTransferTarget.