SharedFolderMetadataBase

public class SharedFolderMetadataBase : CustomStringConvertible, JSONRepresentable

Properties of the shared folder.

  • The current user’s access level for this shared folder.

    Declaration

    Swift

    public let accessType: Sharing.AccessLevel
  • Whether this folder is inside of a team folder.

    Declaration

    Swift

    public let isInsideTeamFolder: Bool
  • Whether this folder is a team folder https://www.dropbox.com/en/help/986.

    Declaration

    Swift

    public let isTeamFolder: Bool
  • The display names of the users that own the folder. If the folder is part of a team folder, the display names of the team admins are also included. Absent if the owner display names cannot be fetched.

    Declaration

    Swift

    public let ownerDisplayNames: [String]?
  • The team that owns the folder. This field is not present if the folder is not owned by a team.

    Declaration

    Swift

    public let ownerTeam: Users.Team?
  • The ID of the parent shared folder. This field is present only if the folder is contained within another shared folder.

    Declaration

    Swift

    public let parentSharedFolderId: String?
  • The full path of this shared folder. Absent for unmounted folders.

    Declaration

    Swift

    public let pathDisplay: String?
  • The lower-cased full path of this shared folder. Absent for unmounted folders.

    Declaration

    Swift

    public let pathLower: String?
  • Display name for the parent folder.

    Declaration

    Swift

    public let parentFolderName: String?
  • Declaration

    Swift

    public var description: String { get }