Class StagedOrderSetBillingAddressCustomFieldActionBuilder
java.lang.Object
com.commercetools.api.models.order_edit.StagedOrderSetBillingAddressCustomFieldActionBuilder
- All Implemented Interfaces:
Builder<StagedOrderSetBillingAddressCustomFieldAction>
public class StagedOrderSetBillingAddressCustomFieldActionBuilder
extends Object
implements Builder<StagedOrderSetBillingAddressCustomFieldAction>
StagedOrderSetBillingAddressCustomFieldActionBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
StagedOrderSetBillingAddressCustomFieldAction stagedOrderSetBillingAddressCustomFieldAction = StagedOrderSetBillingAddressCustomFieldAction.builder()
.name("{name}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds StagedOrderSetBillingAddressCustomFieldAction with checking for non-null required valuesbuilds StagedOrderSetBillingAddressCustomFieldAction 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 StagedOrderSetBillingAddressCustomFieldActionBuildercreate builder for StagedOrderSetBillingAddressCustomFieldAction instanceIfvalue
is absent ornull
, this field will be removed if it exists.
-
Constructor Details
-
StagedOrderSetBillingAddressCustomFieldActionBuilder
public StagedOrderSetBillingAddressCustomFieldActionBuilder()
-
-
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. Removing a field that does not exist returns an InvalidOperation 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. Removing a field that does not exist returns an InvalidOperation error. Ifvalue
is provided, it is set for the field defined byname
.- Returns:
- value
-
build
builds StagedOrderSetBillingAddressCustomFieldAction with checking for non-null required values- Specified by:
build
in interfaceBuilder<StagedOrderSetBillingAddressCustomFieldAction>
- Returns:
- StagedOrderSetBillingAddressCustomFieldAction
-
buildUnchecked
builds StagedOrderSetBillingAddressCustomFieldAction without checking for non-null required values- Returns:
- StagedOrderSetBillingAddressCustomFieldAction
-
of
factory method for an instance of StagedOrderSetBillingAddressCustomFieldActionBuilder- Returns:
- builder
-
of
public static StagedOrderSetBillingAddressCustomFieldActionBuilder of(StagedOrderSetBillingAddressCustomFieldAction template) create builder for StagedOrderSetBillingAddressCustomFieldAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-