AssetContact

data class AssetContact(val website: String? = null, val phone: String? = null, val email: String? = null)

An object containing the asset's contact available information.

Parameters

website

The website contact for this Asset, such as a business' homepage.

phone

Contains the Asset's phone number in its local format.

email

Contains the Asset's email contact.

Constructors

Link copied to clipboard
constructor(website: String? = null, phone: String? = null, email: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "email")
val email: String? = null
Link copied to clipboard
@SerializedName(value = "phone")
val phone: String? = null
Link copied to clipboard
@SerializedName(value = "website")
val website: String? = null