MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPAuthDetails.h
Go to the documentation of this file.
1//
2// MPAuthDetails.h
3// MapsIndoorsSDK
4//
5// Created by Daniel Nielsen on 13/10/2021.
6// Copyright © 2021 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11@class MPBackendDetails;
12@class MPAuthClientInfo;
13
14NS_ASSUME_NONNULL_BEGIN
15
16@protocol MPAuthDetails <NSObject>
17
18@property (nonatomic, readonly) NSString *authIssuer;
19@property (nonatomic, readonly) NSString *authScope;
20@property (nonatomic, readonly) BOOL isAuthRequired;
21@property (nonatomic, readonly) NSArray<MPAuthClientInfo *> *authClients;
22
23@end
24
25NS_ASSUME_NONNULL_END
Definition MPAuthClientInfo.h:14