FBSDKDialogConfiguration.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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. /**
  11. Internal type exposed to facilitate transition to Swift.
  12. API Subject to change or removal without warning. Do not use.
  13. @warning INTERNAL - DO NOT USE
  14. */
  15. NS_SWIFT_NAME(_DialogConfiguration)
  16. @interface FBSDKDialogConfiguration : NSObject <NSCopying, NSObject, NSSecureCoding>
  17. - (instancetype)init NS_UNAVAILABLE;
  18. + (instancetype)new NS_UNAVAILABLE;
  19. - (instancetype)initWithName:(NSString *)name
  20. URL:(NSURL *)URL
  21. appVersions:(NSArray<id> *)appVersions
  22. NS_DESIGNATED_INITIALIZER;
  23. @property (nonatomic, readonly, copy) NSArray<id> *appVersions; // NSString, possibly NSNumber
  24. @property (nonatomic, readonly, copy) NSString *name;
  25. @property (nonatomic, readonly, copy) NSURL *URL;
  26. @end
  27. NS_ASSUME_NONNULL_END