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.

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.

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

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.

describe, getCustom

getCreationDate, getLastModified, getUUID

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

email: String

Returns the email address of the registrant or null.


firstName: String

Returns the first name of the registrant or null.


lastName: String

Returns the last name of the registrant or null.


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.


getEmail(): String

Returns the email address of the registrant or null.

Returns:

  • the email address of the registrant or null.

getFirstName(): String

Returns the first name of the registrant or null.

Returns:

  • the first name of the registrant or null.

getLastName(): String

Returns the last name of the registrant or null.

Returns:

  • the last name of the registrant or null.

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(email: String): void

Sets the email address of the registrant.

Parameters:

  • email - the email address of the registrant.

setFirstName(firstName: String): void

Sets the first name of the registrant.

Parameters:

  • firstName - the first name of the registrant.

setLastName(lastName: String): void

Sets the last name of the registrant.

Parameters:

  • lastName - the last name of the registrant.

setRole(role: String): void

Sets the role of the registrant.

Parameters:

  • role - the role of the registrant.