Interface MyCustomerEmailVerify
public interface MyCustomerEmailVerify
MyCustomerEmailVerify
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
MyCustomerEmailVerify myCustomerEmailVerify = MyCustomerEmailVerify.builder()
.tokenValue("{tokenValue}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic MyCustomerEmailVerifyBuilder
builder()
builder factory method for MyCustomerEmailVerifystatic MyCustomerEmailVerifyBuilder
builder
(MyCustomerEmailVerify template) create builder for MyCustomerEmailVerify instancestatic MyCustomerEmailVerify
deepCopy
(MyCustomerEmailVerify template) factory method to create a deep copy of MyCustomerEmailVerify@NotNull String
Value of the token to verify Customer email.static MyCustomerEmailVerify
of()
factory methodstatic MyCustomerEmailVerify
of
(MyCustomerEmailVerify template) factory method to create a shallow copy MyCustomerEmailVerifyvoid
setTokenValue
(String tokenValue) Value of the token to verify Customer email.static com.fasterxml.jackson.core.type.TypeReference<MyCustomerEmailVerify>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map function
-
Method Details
-
getTokenValue
Value of the token to verify Customer email.
- Returns:
- tokenValue
-
setTokenValue
Value of the token to verify Customer email.
- Parameters:
tokenValue
- value to be set
-
of
factory method- Returns:
- instance of MyCustomerEmailVerify
-
of
factory method to create a shallow copy MyCustomerEmailVerify- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of MyCustomerEmailVerify- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for MyCustomerEmailVerify- Returns:
- builder
-
builder
create builder for MyCustomerEmailVerify instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withMyCustomerEmailVerify
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-