MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPUserRole.h
Go to the documentation of this file.
1//
2// MPUserRole.h
3// MapsIndoors
4//
5// Created by Michael Bech Hansen on 07/06/2019.
6// Copyright © 2019 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13@interface MPUserRole : NSObject
14
15@property (nonatomic, strong, readonly) NSString* userRoleId;
16@property (nonatomic, strong, readonly) NSString* userRoleName;
17
18+ (instancetype) newFromDict:(NSDictionary*)dict;
19- (instancetype) initWithDictionary:(NSDictionary*)dict;
20- (instancetype) init NS_UNAVAILABLE;
21
22@end
23
24NS_ASSUME_NONNULL_END
Definition MPUserRole.h:14
instancetype NS_UNAVAILABLE()
NSString * userRoleName
Definition MPUserRole.h:16
NSString * userRoleId
Definition MPUserRole.h:15