SenderInfo

public struct SenderInfo

Information about the sender of a chat message.

Properties

  • id

    The unique id for the sender (agent or customer). Represents the id for a customer and the id for the agent.

    Declaration

    Swift

    public let id: String
  • The first name of the sender.

    Declaration

    Swift

    public let firstName: String
  • The last name of the sender.

    Declaration

    Swift

    public let lastName: String
  • The full name of the sender.

    Declaration

    Swift

    public var fullName: String { get }

Init

  • Declaration

    Swift

    public init(message: Message)

    Parameters

    message

    The info about a message in a chat.