Class TypeRemoveFieldDefinitionActionBuilder
java.lang.Object
com.commercetools.api.models.type.TypeRemoveFieldDefinitionActionBuilder
- All Implemented Interfaces:
- Builder<TypeRemoveFieldDefinitionAction>
public class TypeRemoveFieldDefinitionActionBuilder
extends Object
implements Builder<TypeRemoveFieldDefinitionAction>
TypeRemoveFieldDefinitionActionBuilder
 
Example to create an instance using the builder pattern
 
Example to create an instance using the builder pattern
     TypeRemoveFieldDefinitionAction typeRemoveFieldDefinitionAction = TypeRemoveFieldDefinitionAction.builder()
             .fieldName("{fieldName}")
             .build()
 - 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbuild()builds TypeRemoveFieldDefinitionAction with checking for non-null required valuesbuilds TypeRemoveFieldDefinitionAction without checking for non-null required valuesnameof the FieldDefinition to remove.nameof the FieldDefinition to remove.of()factory method for an instance of TypeRemoveFieldDefinitionActionBuilderof(TypeRemoveFieldDefinitionAction template) create builder for TypeRemoveFieldDefinitionAction instance
- 
Constructor Details- 
TypeRemoveFieldDefinitionActionBuilderpublic TypeRemoveFieldDefinitionActionBuilder()
 
- 
- 
Method Details- 
fieldNamenameof the FieldDefinition to remove. The removal of a FieldDefinition deletes asynchronously all Custom Fields using the FieldDefinition as well.- Parameters:
- fieldName- value to be set
- Returns:
- Builder
 
- 
getFieldNamenameof the FieldDefinition to remove. The removal of a FieldDefinition deletes asynchronously all Custom Fields using the FieldDefinition as well.- Returns:
- fieldName
 
- 
buildbuilds TypeRemoveFieldDefinitionAction with checking for non-null required values- Specified by:
- buildin interface- Builder<TypeRemoveFieldDefinitionAction>
- Returns:
- TypeRemoveFieldDefinitionAction
 
- 
buildUncheckedbuilds TypeRemoveFieldDefinitionAction without checking for non-null required values- Returns:
- TypeRemoveFieldDefinitionAction
 
- 
offactory method for an instance of TypeRemoveFieldDefinitionActionBuilder- Returns:
- builder
 
- 
ofcreate builder for TypeRemoveFieldDefinitionAction instance- Parameters:
- template- instance with prefilled values for the builder
- Returns:
- builder
 
 
-