You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A structure that encapsulates a permission request result
When no error occured during the permission request process, the `error`property will be `nil`. The authorization status will reflect the permission's authorization status.
*/
@available(iOS 13.0, tvOS 13.0, *)
public struct JMResult {
///The type of permission for the result
public let permissionType: PermissionType
///The authorization status of the permission
public let authorizationStatus: AuthorizationStatus
///An error object containing why the permission request failed, or nil if the operation was successful