ProfileContactInfo

data class ProfileContactInfo(val homePhone: String? = null, val workPhone: String? = null, val cellPhone: String? = null, val email: String? = null, val contactForm: URI? = null, val calendar: URI? = null)

The user's contact information. This is only available if the user has chosen to make it public. This is only provided in authenticated API requests.

Parameters

homePhone

The user's home phone number.

workPhone

The user's work phone number.

cellPhone

The user's cell phone number.

email

The user's email address as provided on the contact section of the profile. Might differ from their account emails.

contactForm

The URL to the user's contact form.

calendar

The URL to the user's calendar.

Constructors

Link copied to clipboard
constructor(homePhone: String? = null, workPhone: String? = null, cellPhone: String? = null, email: String? = null, contactForm: URI? = null, calendar: URI? = null)

Properties

Link copied to clipboard
@SerializedName(value = "calendar")
val calendar: URI? = null
Link copied to clipboard
@SerializedName(value = "cell_phone")
val cellPhone: String? = null
Link copied to clipboard
@SerializedName(value = "contact_form")
val contactForm: URI? = null
Link copied to clipboard
@SerializedName(value = "email")
val email: String? = null
Link copied to clipboard
@SerializedName(value = "home_phone")
val homePhone: String? = null
Link copied to clipboard
@SerializedName(value = "work_phone")
val workPhone: String? = null