| | |
| | | |
| | | #import <FBSDKShareKit/FBSDKShareOpenGraphValueContainer.h> |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | /** |
| | | An Open Graph Object for sharing. |
| | | |
| | |
| | | @"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. |
| | | @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. |
| | |
| | | - (BOOL)isEqualToShareOpenGraphObject:(FBSDKShareOpenGraphObject *)object; |
| | | |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |