SendTypingNotificationRequest

public struct SendTypingNotificationRequest : Codable

Request payload for typing notifications.

Properties

  • 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?

Initializers

  • 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.

Codable

  • Initialize a SendTypingNotificationRequest structure from decoder

    Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Encode a SendTypingNotificationRequest structure

    Declaration

    Swift

    public func encode(to encoder: Encoder) throws