FBSDKDomainConfiguration.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  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. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. NS_SWIFT_NAME(_DomainConfiguration)
  11. @interface FBSDKDomainConfiguration : NSObject <NSCopying, NSObject, NSSecureCoding>
  12. - (instancetype)init NS_UNAVAILABLE;
  13. + (instancetype)new NS_UNAVAILABLE;
  14. - (instancetype)initWithTimestamp:(nullable NSDate *)timestamp
  15. domainInfo:(nullable NSDictionary<NSString *, NSDictionary<NSString *, id>*> *)domainInfo
  16. NS_DESIGNATED_INITIALIZER;
  17. @property (nullable, nonatomic, readonly, copy) NSDate *timestamp;
  18. @property (nonatomic, readonly) NSInteger version;
  19. @property (nullable, nonatomic, readonly, copy) NSDictionary<NSString *, NSDictionary<NSString *, id>*> *domainInfo;
  20. /**
  21. Internal method exposed to facilitate transition to Swift.
  22. API Subject to change or removal without warning. Do not use.
  23. @warning INTERNAL - DO NOT USE
  24. */
  25. + (void)setDefaultDomainInfo;
  26. @end
  27. NS_ASSUME_NONNULL_END