sensitivity.io for iOS & macOS  1.1.4
Classification.h
1 //
2 // Classification.h
3 //
4 // Created by Andreea ERDELYI <andreea.erdelyi@cososys.com>
5 //
6 // Copyright (C) 2017 CoSoSys Ltd team@sensitivity.io
7 // CoSoSys Ltd. All rights reserved.
8 // Please see the COPYING for more details.
9 //
10 
11 #import <Foundation/Foundation.h>
12 
13 // MARK: - Classification
17 @interface Classification : NSObject
18 
19 - (instancetype _Null_unspecified) init NS_UNAVAILABLE;
20 + (instancetype _Null_unspecified) new NS_UNAVAILABLE;
21 - (instancetype _Null_unspecified) copy NS_UNAVAILABLE;
30 - (instancetype _Nullable) initWithError:(NSError * _Nullable * _Nullable)error NS_DESIGNATED_INITIALIZER NS_SWIFT_NAME(init());
31 
32 // MARK: - getters
33 
41 - (BOOL) isCorporate:(BOOL* _Nonnull)isCorporate withError:(NSError * _Nullable * _Nullable)error;
42 
43 // MARK: - description
44 
50 - (NSString* _Nonnull) description;
51 
52 @end
NSString *_Nonnull description()
Definition: Classification.h:17