RSDPermission

@objc
public protocol RSDPermission : AnyObject

An RSDPermission can carry additional information about the permission

  • An identifier for the permission.

    Declaration

    Swift

    var identifier: String { get }
  • A title for this permission.

    Declaration

    Swift

    var title: String? { get }
  • Additional reason for requiring the permission.

    Declaration

    Swift

    var reason: String? { get }
  • The failure message to show for this authorization status.

    Declaration

    Swift

    func message(for status: RSDAuthorizationStatus) -> String?