Chat & Videocall Actions
Overview
The SDK exposes the MeetingLawyersAction enum to describe quick actions within the messaging flow:
- Chat with a specific professional, using a filter (
MeetingLawyersChatFilter) - Videocall
This allows you to jump directly to the chat (or start a call) without the user having to manually search for the professional in the list.
API
public enum MeetingLawyersAction : Equatable, Sendable {
case chat(filter: MeetingLawyers.MeetingLawyersChatFilter)
case videocall
}
public enum MeetingLawyersChatFilter : Equatable, Sendable {
case professionalId(id: String)
case professionalHash(hash: String)
}