Alerts

public struct Alerts : Codable, Hashable, Sendable

Undocumented

  • Undocumented

    Declaration

    Swift

    public init(follow: Bool, favourite: Bool, repost: Bool, mention: Bool, poll: Bool? = nil, followRequest: Bool? = nil, post: Bool? = nil)
  • Receive a push notification when someone has followed you? Boolean.

    Declaration

    Swift

    public var follow: Bool
  • Receive a push notification when a post you created has been favourited by someone else? Boolean.

    Declaration

    Swift

    public var favourite: Bool
  • Receive a push notification when a post you created has been boosted by someone else? Boolean.

    Declaration

    Swift

    public var repost: Bool
  • Receive a push notification when someone else has mentioned you in a post? Boolean.

    Declaration

    Swift

    public var mention: Bool
  • Receive a push notification when a poll you voted in or created has ended? Boolean. Added in 2.8.0

    Declaration

    Swift

    public var poll: Bool?
  • Undocumented

    Declaration

    Swift

    public var followRequest: Bool?
  • Undocumented

    Declaration

    Swift

    public var post: Bool?
  • Undocumented

    Declaration

    Swift

    public var update: Bool?