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