commit | author | age
|
97fc0a
|
1 |
/* |
L |
2 |
* Copyright (c) Meta Platforms, Inc. and affiliates. |
|
3 |
* All rights reserved. |
|
4 |
* |
|
5 |
* This source code is licensed under the license found in the |
|
6 |
* LICENSE file in the root directory of this source tree. |
|
7 |
*/ |
|
8 |
|
|
9 |
#import <Foundation/Foundation.h> |
|
10 |
|
|
11 |
NS_ASSUME_NONNULL_BEGIN |
|
12 |
|
|
13 |
NS_SWIFT_NAME(_DomainConfiguration) |
|
14 |
@interface FBSDKDomainConfiguration : NSObject <NSCopying, NSObject, NSSecureCoding> |
|
15 |
|
|
16 |
- (instancetype)init NS_UNAVAILABLE; |
|
17 |
+ (instancetype)new NS_UNAVAILABLE; |
|
18 |
|
|
19 |
|
|
20 |
- (instancetype)initWithTimestamp:(nullable NSDate *)timestamp |
|
21 |
domainInfo:(nullable NSDictionary<NSString *, NSDictionary<NSString *, id>*> *)domainInfo |
|
22 |
NS_DESIGNATED_INITIALIZER; |
|
23 |
|
|
24 |
@property (nullable, nonatomic, readonly, copy) NSDate *timestamp; |
|
25 |
@property (nonatomic, readonly) NSInteger version; |
|
26 |
@property (nullable, nonatomic, readonly, copy) NSDictionary<NSString *, NSDictionary<NSString *, id>*> *domainInfo; |
|
27 |
|
|
28 |
/** |
|
29 |
Internal method exposed to facilitate transition to Swift. |
|
30 |
API Subject to change or removal without warning. Do not use. |
|
31 |
|
|
32 |
@warning INTERNAL - DO NOT USE |
|
33 |
*/ |
|
34 |
+ (void)setDefaultDomainInfo; |
|
35 |
|
|
36 |
@end |
|
37 |
|
|
38 |
NS_ASSUME_NONNULL_END |