UserInfoResult
public class UserInfoResult : CustomStringConvertible, JSONRepresentable
The UserInfoResult struct
-
Last name of user.
Declaration
Swift
public let familyName: String? -
First name of user.
Declaration
Swift
public let givenName: String? -
Email address of user.
Declaration
Swift
public let email: String? -
If user is email verified.
Declaration
Swift
public let emailVerified: Bool? -
Issuer of token (in this case Dropbox).
Declaration
Swift
public let iss: String -
An identifier for the user. This is the Dropbox account_id, a string value such as dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc.
Declaration
Swift
public let sub: String -
Declaration
Swift
public var description: String { get }
View on GitHub
UserInfoResult Class Reference