UserName

data class UserName(val familyName: String, val formatted: String? = null, val givenName: String, val honorificPrefix: String? = null, val honorificSuffix: String? = null, val middleName: String? = null)

Constructors

Link copied to clipboard
constructor(familyName: String, formatted: String? = null, givenName: String, honorificPrefix: String? = null, honorificSuffix: String? = null, middleName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The family name of the user.

Link copied to clipboard
val formatted: String? = null

The name that is typically displayed when the name is shown for display.

Link copied to clipboard

The given name of the user. The following arguments are optional:

Link copied to clipboard
val honorificPrefix: String? = null

The honorific prefix of the user.

Link copied to clipboard
val honorificSuffix: String? = null

The honorific suffix of the user.

Link copied to clipboard
val middleName: String? = null

The middle name of the user.