AccessStatus

public enum AccessStatus : String, Codable

States whether the access was granted or not.

  • The access was granted to the user.

    Declaration

    Swift

    case granted = "Access Granted"
  • The access was denied to the user.

    Declaration

    Swift

    case denied = "Access Denied"
  • An error occured while the request was being procesed.

    Declaration

    Swift

    case error = "Access Error"