MentionPos

public struct MentionPos

The position of a mention in a Webex Message.

Since

3.0.0
  • id

    The id of the person

    Declaration

    Swift

    public var id: String
  • The start position of the mention

    Declaration

    Swift

    public var start: Int?
  • end

    The end position of the mention

    Declaration

    Swift

    public var end: Int?
  • The position of a mention in a Webex Message.

    Declaration

    Swift

    public init(id: String, start: Int, end: Int)

    Parameters

    id

    The id of the person. (Derived parameter: Use MembershipClient.list(...) to get the list of members. Then use Membership.personId to get the id of the member)

    start

    The start position of the mention.

    end

    The end position of the mention.