DBSHARINGAudienceExceptionContentInfo
Objective-C
@interface DBSHARINGAudienceExceptionContentInfo
: NSObject <DBSerializable, NSCopying>
Swift
class DBSHARINGAudienceExceptionContentInfo : NSObject, DBSerializable, NSCopying
The AudienceExceptionContentInfo
struct.
Information about the content that has a link audience different than that of this folder.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
The name of the content, which is either a file or a folder.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull name;
Swift
var name: String { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithName:(nonnull NSString *)name;
Swift
init(name: String)
Parameters
name
The name of the content, which is either a file or a folder.
Return Value
An initialized instance.