Class ProductListRegistrant

A ProductListRegistrant is typically associated with an event related product list such as a gift registry. It holds information about a person associated with the event such as a bride or groom.

Property Summary 

PropertyDescription
email: StringReturns the email address of the registrant or null.
firstName: StringReturns the first name of the registrant or null.
lastName: StringReturns the last name of the registrant or null.
role: StringReturns the role of the registrant or null.

Constructor Summary 

This class does not have a constructor, so you cannot create it directly.

Method Summary 

MethodDescription
getEmail()Returns the email address of the registrant or null.
getFirstName()Returns the first name of the registrant or null.
getLastName()Returns the last name of the registrant or null.
getRole()Returns the role of the registrant or null.
setEmail(String)Sets the email address of the registrant.
setFirstName(String)Sets the first name of the registrant.
setLastName(String)Sets the last name of the registrant.
setRole(String)Sets the role of the registrant.

Methods inherited from class ExtensibleObject 

describe, getCustom

Methods inherited from class PersistentObject 

getCreationDate, getLastModified, getUUID

Methods inherited from class Object 

assign, create, create, defineProperties, defineProperty, entries, freeze, fromEntries, getOwnPropertyDescriptor, getOwnPropertyNames, getOwnPropertySymbols, getPrototypeOf, hasOwnProperty, is, isExtensible, isFrozen, isPrototypeOf, isSealed, keys, preventExtensions, propertyIsEnumerable, seal, setPrototypeOf, toLocaleString, toString, valueOf, values

Property Details 

email 

email: String

Returns the email address of the registrant or null.


firstName 

firstName: String

Returns the first name of the registrant or null.


lastName 

lastName: String

Returns the last name of the registrant or null.


role 

role: String

Returns the role of the registrant or null. The role of a registrant can be for example the bride of a bridal couple.


Method Details 

getEmail() 

getEmail(): String

Returns the email address of the registrant or null.

Returns:

  • the email address of the registrant or null.

getFirstName() 

getFirstName(): String

Returns the first name of the registrant or null.

Returns:

  • the first name of the registrant or null.

getLastName() 

getLastName(): String

Returns the last name of the registrant or null.

Returns:

  • the last name of the registrant or null.

getRole() 

getRole(): String

Returns the role of the registrant or null. The role of a registrant can be for example the bride of a bridal couple.

Returns:

  • the role name of the registrant or null.

setEmail(String) 

setEmail(email: String): void

Sets the email address of the registrant.

Parameters:

  • email - the email address of the registrant.

setFirstName(String) 

setFirstName(firstName: String): void

Sets the first name of the registrant.

Parameters:

  • firstName - the first name of the registrant.

setLastName(String) 

setLastName(lastName: String): void

Sets the last name of the registrant.

Parameters:

  • lastName - the last name of the registrant.

setRole(String) 

setRole(role: String): void

Sets the role of the registrant.

Parameters:

  • role - the role of the registrant.

DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!