Inherits from NSObject
Declared in ComplianceCheck.h

Tasks

  •   compliant

    A boolean defining if the current check is in compliance

    property
  •   key

    The unique key for this specific check

    property
  •   status

    The status of the check

    property
  •   title

    The user friendly title of the check

    property
  •   message

    A message reflecting the results of the check

    property
  •   moreInfo

    A message defining a remedy to a failed check

    property
  •   score

    The score value for the check

    property

Properties

compliant

A boolean defining if the current check is in compliance

@property (nonatomic, strong) NSNumber *compliant

Discussion

An NSNumber containing a boolean that represents whether or not the current check passed on the device and is therfore compliant.

Declared In

ComplianceCheck.h

key

The unique key for this specific check

@property (nonatomic, strong) NSString *key

Discussion

A unique key is given to each check so it can be identified across platforms.

Declared In

ComplianceCheck.h

message

A message reflecting the results of the check

@property (nonatomic, strong) NSString *message

Discussion

The message show to the user about the results of the check. This will explain issues if any exist as well as validate that the given check is not a problem on their device.

Declared In

ComplianceCheck.h

moreInfo

A message defining a remedy to a failed check

@property (nonatomic, strong) NSString *moreInfo

Discussion

A message reflecting action items to resolve problems discovered by the check. This value will be empty if the status of the check is pass and compliant is true accordingly.

Declared In

ComplianceCheck.h

score

The score value for the check

@property (nonatomic, strong) NSNumber *score

Discussion

This score value also reflects the status of the check. If a check is compliant it will also have a score of 0.0. Lower is better in compliance checks. The higher the value of the score, the more at risk the device is.

Declared In

ComplianceCheck.h

status

The status of the check

@property (nonatomic, strong) NSString *status

Discussion

This status can be pass, fail, or warn based on the threshholds defined by the enrolled tenant. If unenrolled, default threshholds will be used.

Declared In

ComplianceCheck.h

title

The user friendly title of the check

@property (nonatomic, strong) NSString *title

Discussion

The user friendly title of the check used in our front end graphical interface that describes what the check represents.

Declared In

ComplianceCheck.h