ULContact

data class ULContact(val email: String? = null, val title: String? = null, val firstName: String? = null, val middleName: String? = null, val lastName: String? = null, val phone: String? = null, val dateOfBirth: Date? = null, val streetAddress: String? = null, val streetAddress2: String? = null, val postalCode: String? = null, val city: String? = null, val region: String? = null, val country: String? = null, val ssn: String? = null, val stateIncome: Int? = null) : Serializable

Class to represent the billing contact.

Constructors

Link copied to clipboard
fun ULContact(email: String? = null, title: String? = null, firstName: String? = null, middleName: String? = null, lastName: String? = null, phone: String? = null, dateOfBirth: Date? = null, streetAddress: String? = null, streetAddress2: String? = null, postalCode: String? = null, city: String? = null, region: String? = null, country: String? = null, ssn: String? = null, stateIncome: Int? = null)

Init method to create a ULContact object with the given parameters

Properties

Link copied to clipboard
val city: String? = null

City of the address of the contact

Link copied to clipboard
val country: String? = null

Country of the address of the contact

Link copied to clipboard
val dateOfBirth: Date? = null
Link copied to clipboard
val email: String? = null

Email address of the contact

Link copied to clipboard
val firstName: String? = null

First name of the contact

Link copied to clipboard
val lastName: String? = null

Last name of the contact

Link copied to clipboard
val middleName: String? = null

Middle name of the contact

Link copied to clipboard
val phone: String? = null

Phone number of the contact

Link copied to clipboard
val postalCode: String? = null

Postal code of the address of the contact

Link copied to clipboard
val region: String? = null

Region of the address of the contact. Value must be a 2 letter state code, “CA”, “SC”, etc.

Link copied to clipboard
val ssn: String? = null
Link copied to clipboard
val stateIncome: Int? = null
Link copied to clipboard
val streetAddress: String? = null

First line of the street of the address of the contact

Link copied to clipboard
val streetAddress2: String? = null

Second line of the street of the address of the contact

Link copied to clipboard
val title: String? = null

Title of the contact. Preferred values are: "Mr", "Ms", "Mrs", "Miss", "Dr".