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