Class PaymentSetMethodInfoCustomFieldActionBuilder
java.lang.Object
com.commercetools.api.models.payment.PaymentSetMethodInfoCustomFieldActionBuilder
- All Implemented Interfaces:
Builder<PaymentSetMethodInfoCustomFieldAction>
public class PaymentSetMethodInfoCustomFieldActionBuilder
extends Object
implements Builder<PaymentSetMethodInfoCustomFieldAction>
PaymentSetMethodInfoCustomFieldActionBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
PaymentSetMethodInfoCustomFieldAction paymentSetMethodInfoCustomFieldAction = PaymentSetMethodInfoCustomFieldAction.builder()
.name("{name}")
.build()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()builds PaymentSetMethodInfoCustomFieldAction with checking for non-null required valuesbuilds PaymentSetMethodInfoCustomFieldAction without checking for non-null required valuesgetName()Name of the Custom Field.getValue()Ifvalueis absent ornull, this field will be removed if it exists.Name of the Custom Field.of()factory method for an instance of PaymentSetMethodInfoCustomFieldActionBuilderof(PaymentSetMethodInfoCustomFieldAction template) create builder for PaymentSetMethodInfoCustomFieldAction instanceIfvalueis absent ornull, this field will be removed if it exists.
-
Constructor Details
-
PaymentSetMethodInfoCustomFieldActionBuilder
public PaymentSetMethodInfoCustomFieldActionBuilder()
-
-
Method Details
-
name
Name of the Custom Field.
- Parameters:
name- value to be set- Returns:
- Builder
-
value
If
valueis absent ornull, this field will be removed if it exists. Ifvalueis provided, it is set for the field defined byname. Trying to remove a field that does not exist will fail with an InvalidOperation error.- Parameters:
value- value to be set- Returns:
- Builder
-
getName
Name of the Custom Field.
- Returns:
- name
-
getValue
If
valueis absent ornull, this field will be removed if it exists. Ifvalueis provided, it is set for the field defined byname. Trying to remove a field that does not exist will fail with an InvalidOperation error.- Returns:
- value
-
build
builds PaymentSetMethodInfoCustomFieldAction with checking for non-null required values- Specified by:
buildin interfaceBuilder<PaymentSetMethodInfoCustomFieldAction>- Returns:
- PaymentSetMethodInfoCustomFieldAction
-
buildUnchecked
builds PaymentSetMethodInfoCustomFieldAction without checking for non-null required values- Returns:
- PaymentSetMethodInfoCustomFieldAction
-
of
factory method for an instance of PaymentSetMethodInfoCustomFieldActionBuilder- Returns:
- builder
-
of
public static PaymentSetMethodInfoCustomFieldActionBuilder of(PaymentSetMethodInfoCustomFieldAction template) create builder for PaymentSetMethodInfoCustomFieldAction instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-