Class PaymentMethodInfoCustomFieldRemovedMessagePayloadBuilder
java.lang.Object
com.commercetools.api.models.message.PaymentMethodInfoCustomFieldRemovedMessagePayloadBuilder
- All Implemented Interfaces:
- Builder<PaymentMethodInfoCustomFieldRemovedMessagePayload>
public class PaymentMethodInfoCustomFieldRemovedMessagePayloadBuilder
extends Object
implements Builder<PaymentMethodInfoCustomFieldRemovedMessagePayload>
PaymentMethodInfoCustomFieldRemovedMessagePayloadBuilder
 
Example to create an instance using the builder pattern
 
Example to create an instance using the builder pattern
     PaymentMethodInfoCustomFieldRemovedMessagePayload paymentMethodInfoCustomFieldRemovedMessagePayload = PaymentMethodInfoCustomFieldRemovedMessagePayload.builder()
             .name("{name}")
             .build()
 - 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbuild()builds PaymentMethodInfoCustomFieldRemovedMessagePayload with checking for non-null required valuesbuilds PaymentMethodInfoCustomFieldRemovedMessagePayload without checking for non-null required valuesgetName()Name of the Custom Field that was removed.Name of the Custom Field that was removed.of()factory method for an instance of PaymentMethodInfoCustomFieldRemovedMessagePayloadBuildercreate builder for PaymentMethodInfoCustomFieldRemovedMessagePayload instance
- 
Constructor Details- 
PaymentMethodInfoCustomFieldRemovedMessagePayloadBuilderpublic PaymentMethodInfoCustomFieldRemovedMessagePayloadBuilder()
 
- 
- 
Method Details- 
nameName of the Custom Field that was removed. - Parameters:
- name- value to be set
- Returns:
- Builder
 
- 
getNameName of the Custom Field that was removed. - Returns:
- name
 
- 
buildbuilds PaymentMethodInfoCustomFieldRemovedMessagePayload with checking for non-null required values- Specified by:
- buildin interface- Builder<PaymentMethodInfoCustomFieldRemovedMessagePayload>
- Returns:
- PaymentMethodInfoCustomFieldRemovedMessagePayload
 
- 
buildUncheckedbuilds PaymentMethodInfoCustomFieldRemovedMessagePayload without checking for non-null required values- Returns:
- PaymentMethodInfoCustomFieldRemovedMessagePayload
 
- 
offactory method for an instance of PaymentMethodInfoCustomFieldRemovedMessagePayloadBuilder- Returns:
- builder
 
- 
ofpublic static PaymentMethodInfoCustomFieldRemovedMessagePayloadBuilder of(PaymentMethodInfoCustomFieldRemovedMessagePayload template) create builder for PaymentMethodInfoCustomFieldRemovedMessagePayload instance- Parameters:
- template- instance with prefilled values for the builder
- Returns:
- builder
 
 
-