lpw
2021-04-20 b19a78b27247f5f0761c35b5b3e8a41876eabb05
commit | author | age
bad748 1 // Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
W 2 //
3 // You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
4 // copy, modify, and distribute this software in source code or binary form for use
5 // in connection with the web services and APIs provided by Facebook.
6 //
7 // As with any software that integrates with the Facebook platform, your use of
8 // this software is subject to the Facebook Developer Principles and Policies
9 // [http://developers.facebook.com/policy/]. This copyright notice shall be
10 // included in all copies or substantial portions of the software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
14 // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
15 // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
16 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
17 // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18
19 #import <Foundation/Foundation.h>
20
49b883 21 #if TARGET_OS_TV
L 22
23 typedef NS_ENUM(NSUInteger, AppGroupPrivacy) { AppGroupPrivacyOpen };
24
25 FOUNDATION_EXPORT NSString *NSStringFromFBSDKAppGroupPrivacy(AppGroupPrivacy privacy)
26 NS_REFINED_FOR_SWIFT;
27
28 #else
29
30 #import "FBSDKCoreKitImport.h"
bad748 31
e81c27 32 NS_ASSUME_NONNULL_BEGIN
H 33
9febd9 34 /**
W 35  NS_ENUM(NSUInteger, FBSDKAppGroupPrivacy)
36   Specifies the privacy of a group.
bad748 37  */
W 38 typedef NS_ENUM(NSUInteger, FBSDKAppGroupPrivacy)
39 {
9febd9 40   /** Anyone can see the group, who's in it and what members post. */
bad748 41   FBSDKAppGroupPrivacyOpen = 0,
9febd9 42   /** Anyone can see the group and who's in it, but only members can see posts. */
bad748 43   FBSDKAppGroupPrivacyClosed,
e81c27 44 } NS_SWIFT_NAME(AppGroupPrivacy);
bad748 45
9febd9 46 /**
W 47   Converts an FBSDKAppGroupPrivacy to an NSString.
bad748 48  */
e81c27 49 FOUNDATION_EXPORT NSString *NSStringFromFBSDKAppGroupPrivacy(FBSDKAppGroupPrivacy privacy)
H 50 NS_REFINED_FOR_SWIFT;
bad748 51
9febd9 52 /**
W 53   A model for creating an app group.
bad748 54  */
e81c27 55 NS_SWIFT_NAME(AppGroupContent)
bad748 56 @interface FBSDKAppGroupContent : NSObject <FBSDKCopying, NSSecureCoding>
W 57
9febd9 58 /**
W 59   The description of the group.
bad748 60  */
W 61 @property (nonatomic, copy) NSString *groupDescription;
62
9febd9 63 /**
W 64   The name of the group.
bad748 65  */
W 66 @property (nonatomic, copy) NSString *name;
67
9febd9 68 /**
W 69   The privacy for the group.
bad748 70  */
W 71 @property (nonatomic, assign) FBSDKAppGroupPrivacy privacy;
72
9febd9 73 /**
W 74   Compares the receiver to another app group content.
13e53a 75  @param content The other content
H 76  @return YES if the receiver's values are equal to the other content's values; otherwise NO
bad748 77  */
W 78 - (BOOL)isEqualToAppGroupContent:(FBSDKAppGroupContent *)content;
79
80 @end
e81c27 81
H 82 NS_ASSUME_NONNULL_END
49b883 83
L 84 #endif