DBSHARINGLinkAudienceTag
Objective-C
enum DBSHARINGLinkAudienceTag : NSInteger {}
Swift
@frozen enum DBSHARINGLinkAudienceTag : Int, @unchecked Sendable
The DBSHARINGLinkAudienceTag
enum type represents the possible tag states
with which the DBSHARINGLinkAudience
union can exist.
-
Link is accessible by anyone.
Declaration
Objective-C
DBSHARINGLinkAudiencePublic
Swift
case `public` = 0
-
Link is accessible only by team members.
Declaration
Objective-C
DBSHARINGLinkAudienceTeam
Swift
case team = 1
-
The link can be used by no one. The link merely points the user to the content, and does not grant additional rights to the user. Members of the content who use this link can only access the content with their pre-existing access rights.
Declaration
Objective-C
DBSHARINGLinkAudienceNoOne
Swift
case noOne = 2
-
Use
require_password
instead. A link-specific password is required to access the link. Login is not required.Declaration
Objective-C
DBSHARINGLinkAudiencePassword
Swift
case password = 3
-
Link is accessible only by members of the content.
Declaration
Objective-C
DBSHARINGLinkAudienceMembers
Swift
case members = 4
-
(no description).
Declaration
Objective-C
DBSHARINGLinkAudienceOther
Swift
case other = 5