ContactResponse

data class ContactResponse(val email: String? = null, val name: String? = null, val url: String? = null)

Contact information

Constructors

Link copied to clipboard
constructor(email: String? = null, name: String? = null, url: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val email: String? = null

Email address of the contact.

Link copied to clipboard
val name: String? = null

Name of the contact.

Link copied to clipboard
val url: String? = null

URL for the contact.