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 MyCustomerEmailVerifyBuilderbuilder()builder factory method for MyCustomerEmailVerifystatic MyCustomerEmailVerifyBuilderbuilder(MyCustomerEmailVerify template) create builder for MyCustomerEmailVerify instancecopyDeep()static MyCustomerEmailVerifydeepCopy(MyCustomerEmailVerify template) factory method to create a deep copy of MyCustomerEmailVerify@NotNull StringValue of the token to verify Customer email.static MyCustomerEmailVerifyof()factory methodstatic MyCustomerEmailVerifyof(MyCustomerEmailVerify template) factory method to create a shallow copy MyCustomerEmailVerifyvoidsetTokenValue(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> Taccessor 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
-
copyDeep
MyCustomerEmailVerify copyDeep() -
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
-