hank
2019-06-20 e81c27b13950ca02baa879ae7b8108c0c3ef7fb0
frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphObject.h
@@ -22,6 +22,8 @@
#import <FBSDKShareKit/FBSDKShareOpenGraphValueContainer.h>
NS_ASSUME_NONNULL_BEGIN
/**
  An Open Graph Object for sharing.
@@ -41,19 +43,22 @@
    @"fitness:metrics:location:longitude": @"2.17403",
 }];
 */
NS_SWIFT_NAME(ShareOpenGraphObject)
@interface FBSDKShareOpenGraphObject : FBSDKShareOpenGraphValueContainer <FBSDKCopying, NSSecureCoding>
/**
  Convenience method to build a new action and set the object for the specified key.
 - Parameter properties: Properties for the Open Graph object, which will be parsed into the proper models
 @param properties Properties for the Open Graph object, which will be parsed into the proper models
 */
+ (instancetype)objectWithProperties:(NSDictionary *)properties;
+ (instancetype)objectWithProperties:(NSDictionary<NSString *, id> *)properties;
/**
  Compares the receiver to another Open Graph Object.
 - Parameter object: The other object
 - Returns: YES if the receiver's values are equal to the other object's values; otherwise NO
 @param object The other object
 @return YES if the receiver's values are equal to the other object's values; otherwise NO
 */
- (BOOL)isEqualToShareOpenGraphObject:(FBSDKShareOpenGraphObject *)object;
@end
NS_ASSUME_NONNULL_END