FollowStatus

public enum FollowStatus : Int, Codable

The set of available follow status types.

case unfollow = -1
case disabled = 0
case follow = 1

Cases

Initializers

  • Initializes an instance of FollowStatus with the given bool value.

    If nil is given, then an instance of .disabled is initialized.

    Declaration

    Swift

    public init(_ bool: Bool?)

    Parameters

    bool

    The boolean value used to initialize an instance of FollowStatus.