SendTypingNotificationRequest
public struct SendTypingNotificationRequest : Codable
Request payload for typing notifications.
-
The display name of the typing notification sender. This property is used to populate sender name for push notifications.
Declaration
Swift
public let senderDisplayName: String?
-
Initialize a
SendTypingNotificationRequest
structure.Declaration
Swift
public init( senderDisplayName: String? = nil )
Parameters
senderDisplayName
The display name of the typing notification sender. This property is used to populate sender name for push notifications.
-
Initialize a
SendTypingNotificationRequest
structure from decoderDeclaration
Swift
public init(from decoder: Decoder) throws
-
Encode a
SendTypingNotificationRequest
structureDeclaration
Swift
public func encode(to encoder: Encoder) throws