UserInfo
public class UserInfo : CustomStringConvertible, JSONRepresentable
Basic information about a user. Use usersAccount and usersAccountBatch to obtain more detailed information.
-
The account ID of the user.
Declaration
Swift
public let accountId: String -
Email address of user.
Declaration
Swift
public let email: String -
The display name of the user.
Declaration
Swift
public let displayName: String -
If the user is in the same team as current user.
Declaration
Swift
public let sameTeam: Bool -
The team member ID of the shared folder member. Only present if sameTeam is true.
Declaration
Swift
public let teamMemberId: String? -
Declaration
Swift
public var description: String { get }
View on GitHub
UserInfo Class Reference