MentionPos
public struct MentionPos
The position of a mention in a Webex Message.
Since
3.0.0-
The id of the person
Declaration
Swift
public var id: String -
The start position of the mention
Declaration
Swift
public var start: Int? -
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
idThe id of the person. (Derived parameter: Use
MembershipClient.list(...)to get the list of members. Then useMembership.personIdto get the id of the member)startThe start position of the mention.
endThe end position of the mention.
View on GitHub
MentionPos Structure Reference